action microsoft_send_draft { label: "Send draft" description: "Send an existing draft message." provider: microsoft method: POST path: "/v1.0/me/messages/{message_id}/send" scopes: ["Mail.Send"] input: @json { { "type": "object", "required": ["message_id"], "additionalProperties": false, "properties": { "message_id": { "type": "string", "description": "Id of the draft to send." } } } } }