action microsoft_get_contact { label: "Get contact" description: "Fetch a single contact by id." provider: microsoft method: GET path: "/v1.0/me/contacts/{contact_id}" scopes: ["Contacts.Read"] input: @json { { "type": "object", "required": ["contact_id"], "additionalProperties": false, "properties": { "contact_id": { "type": "string", "description": "Contact id." }, "$select": { "type": "string", "description": "Comma-separated list of properties to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" }, "givenName": { "type": "string" }, "surname": { "type": "string" }, "emailAddresses": { "type": "array", "items": { "type": "object" } }, "businessPhones": { "type": "array", "items": { "type": "string" } }, "mobilePhone": { "type": "string" }, "companyName": { "type": "string" }, "jobTitle": { "type": "string" } } } } }