action microsoft_forward_message { label: "Forward message" description: "Forward a message to one or more recipients as the signed-in user." provider: microsoft method: POST path: "/v1.0/me/messages/{message_id}/forward" scopes: ["Mail.Send"] input: @json { { "type": "object", "required": ["message_id", "toRecipients"], "additionalProperties": false, "properties": { "message_id": { "type": "string", "description": "Id of the message to forward." }, "toRecipients": { "type": "array", "items": { "type": "object", "properties": { "emailAddress": { "type": "object", "properties": { "address": { "type": "string" }, "name": { "type": "string" } } } } } }, "comment": { "type": "string", "description": "Text added above the forwarded message." } } } } }