action microsoft_list_folder_contacts { label: "List folder contacts" description: "List contacts in a specific contact folder." provider: microsoft method: GET path: "/v1.0/me/contactFolders/{folder_id}/contacts" scopes: ["Contacts.Read"] input: @json { { "type": "object", "required": ["folder_id"], "additionalProperties": false, "properties": { "folder_id": { "type": "string", "description": "Contact folder id." }, "$top": { "type": "integer", "description": "Maximum number of contacts to return." }, "$filter": { "type": "string", "description": "OData filter expression." }, "$orderby": { "type": "string", "description": "Sort order, e.g. displayName asc." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "emailAddresses": { "type": "array", "items": { "type": "object" } } } } }, "@odata.nextLink": { "type": "string" } } } } }