action microsoft_reply_to_message { label: "Reply to message" description: "Reply to the sender of a message as the signed-in user." provider: microsoft method: POST path: "/v1.0/me/messages/{message_id}/reply" 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." } } } } }