action microsoft_create_reply_draft { label: "Create reply draft" description: "Create a draft reply to a message so it can be edited before sending." provider: microsoft method: POST path: "/v1.0/me/messages/{message_id}/createReply" scopes: ["Mail.ReadWrite"] input: @json { { "type": "object", "required": ["message_id"], "additionalProperties": false, "properties": { "message_id": { "type": "string", "description": "Id of the message to reply to." }, "comment": { "type": "string", "description": "Initial reply body text." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "isDraft": { "type": "boolean" } } } } }