action microsoft_reply_all_to_message { label: "Reply all to message" description: "Reply to all recipients of a message as the signed-in user." provider: microsoft method: POST path: "/v1.0/me/messages/{message_id}/replyAll" scopes: ["Mail.Send"] input: @json { { "type": "object", "required": ["message_id", "comment"], "additionalProperties": false, "properties": { "message_id": { "type": "string", "description": "Id of the message to reply to." }, "comment": { "type": "string", "description": "Reply body text." } } } } }