action microsoft_delete_message { label: "Delete message" description: "Delete a message from the signed-in user's mailbox." provider: microsoft method: DELETE path: "/v1.0/me/messages/{message_id}" scopes: ["Mail.ReadWrite"] input: @json { { "type": "object", "required": ["message_id"], "additionalProperties": false, "properties": { "message_id": { "type": "string", "description": "Id of the message to delete." } } } } }