action microsoft_list_calendars { label: "List calendars" description: "List the signed-in user's calendars." provider: microsoft method: GET path: "/v1.0/me/calendars" scopes: ["Calendars.ReadWrite"] input: @json { { "type": "object", "additionalProperties": false, "properties": { "$top": { "type": "integer", "description": "Maximum number of calendars to return." } } } } output: @json { { "type": "object", "additionalProperties": true, "properties": { "value": { "type": "array", "items": { "type": "object", "additionalProperties": true, "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "isDefaultCalendar": { "type": "boolean" }, "owner": { "type": "object" } } } } } } } }