action microsoft_create_calendar_event { label: "Create calendar event" description: "Create an event in a specific calendar." provider: microsoft method: POST path: "/v1.0/me/calendars/{calendar_id}/events" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["calendar_id", "subject", "start", "end"], "additionalProperties": false, "properties": { "calendar_id": { "type": "string", "description": "Calendar id." }, "subject": { "type": "string" }, "body": { "type": "object", "properties": { "contentType": { "type": "string", "enum": ["text", "html"] }, "content": { "type": "string" } } }, "start": { "type": "object", "required": ["dateTime", "timeZone"], "properties": { "dateTime": { "type": "string" }, "timeZone": { "type": "string" } } }, "end": { "type": "object", "required": ["dateTime", "timeZone"], "properties": { "dateTime": { "type": "string" }, "timeZone": { "type": "string" } } }, "location": { "type": "object", "properties": { "displayName": { "type": "string" } } }, "attendees": { "type": "array", "items": { "type": "object" } }, "isAllDay": { "type": "boolean" }, "isOnlineMeeting": { "type": "boolean" } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "webLink": { "type": "string" } } } } }