action microsoft_get_message { label: "Get message" description: "Fetch a single message from the signed-in user's mailbox by id." provider: microsoft method: GET 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": "Message id." }, "$select": { "type": "string", "description": "Comma-separated list of properties to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "body": { "type": "object" }, "from": { "type": "object" }, "toRecipients": { "type": "array", "items": { "type": "object" } }, "receivedDateTime": { "type": "string" }, "isRead": { "type": "boolean" }, "webLink": { "type": "string" } } } } }