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