action microsoft_update_contact { label: "Update contact" description: "Update properties of an existing contact." provider: microsoft method: PATCH path: "/v1.0/me/contacts/{contact_id}" scopes: ["Contacts.ReadWrite"] input: @json { { "type": "object", "required": ["contact_id"], "additionalProperties": false, "properties": { "contact_id": { "type": "string", "description": "Id of the contact to update." }, "givenName": { "type": "string" }, "surname": { "type": "string" }, "emailAddresses": { "type": "array", "items": { "type": "object", "properties": { "address": { "type": "string" }, "name": { "type": "string" } } } }, "businessPhones": { "type": "array", "items": { "type": "string" } }, "mobilePhone": { "type": "string" }, "companyName": { "type": "string" }, "jobTitle": { "type": "string" }, "personalNotes": { "type": "string" } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" } } } } }