action microsoft_create_contact_folder { label: "Create contact folder" description: "Create a contact folder for the signed-in user." provider: microsoft method: POST path: "/v1.0/me/contactFolders" scopes: ["Contacts.ReadWrite"] input: @json { { "type": "object", "required": ["displayName"], "additionalProperties": false, "properties": { "displayName": { "type": "string", "description": "Folder name." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" } } } } }