action microsoft_create_contact_in_folder { label: "Create contact in folder" description: "Create a contact inside a specific contact folder." provider: microsoft method: POST path: "/v1.0/me/contactFolders/{folder_id}/contacts" scopes: ["Contacts.ReadWrite"] input: @json { { "type": "object", "required": ["folder_id", "givenName"], "additionalProperties": false, "properties": { "folder_id": { "type": "string", "description": "Contact folder id." }, "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" } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "displayName": { "type": "string" } } } } }