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