action microsoft_delete_mail_folder { label: "Delete mail folder" description: "Delete a mail folder and its contents." provider: microsoft method: DELETE path: "/v1.0/me/mailFolders/{folder_id}" scopes: ["Mail.ReadWrite"] input: @json { { "type": "object", "required": ["folder_id"], "additionalProperties": false, "properties": { "folder_id": { "type": "string", "description": "Id of the folder to delete." } } } } }