action microsoft_copy_message { label: "Copy message" description: "Copy a message to another mail folder." provider: microsoft method: POST path: "/v1.0/me/messages/{message_id}/copy" scopes: ["Mail.ReadWrite"] input: @json { { "type": "object", "required": ["message_id", "destinationId"], "additionalProperties": false, "properties": { "message_id": { "type": "string", "description": "Id of the message to copy." }, "destinationId": { "type": "string", "description": "Destination folder id or well-known name." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "parentFolderId": { "type": "string" } } } } }