action microsoft_list_contact_folders { label: "List contact folders" description: "List the signed-in user's contact folders." provider: microsoft method: GET path: "/v1.0/me/contactFolders" scopes: ["Contacts.Read"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of folders to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "parentFolderId": { "type": "string" } } } } } } } }