action microsoft_list_contacts { label: "List contacts" description: "List the signed-in user's contacts." provider: microsoft method: GET path: "/v1.0/me/contacts" scopes: ["Contacts.Read"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of contacts to return." }, "$skip": { "type": "integer", "description": "Number of contacts to skip for paging." }, "$filter": { "type": "string", "description": "OData filter, e.g. startswith(displayName,'A')." }, "$select": { "type": "string", "description": "Comma-separated list of properties to return." }, "$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" } }, "businessPhones": { "type": "array", "items": { "type": "string" } }, "mobilePhone": { "type": "string" }, "companyName": { "type": "string" } } } }, "@odata.nextLink": { "type": "string" } } } } }