action microsoft_get_event { label: "Get event" description: "Fetch a single calendar event by id." provider: microsoft method: GET path: "/v1.0/me/events/{event_id}" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "required": ["event_id"], "additionalProperties": false, "properties": { "event_id": { "type": "string", "description": "Event id." }, "$select": { "type": "string", "description": "Comma-separated list of properties to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "subject": { "type": "string" }, "body": { "type": "object" }, "start": { "type": "object" }, "end": { "type": "object" }, "location": { "type": "object" }, "attendees": { "type": "array", "items": { "type": "object" } }, "webLink": { "type": "string" } } } } }