action twinehealth_fetch_calendar_events { label: "List calendar events" description: "Get a list of calendar events" provider: twinehealth method: GET path: "/calendar_event" encoding: json input: { type: "object" properties: { "filter[attendees]": { type: "string" } "filter[completed]": { type: "boolean" } "filter[completed_at]": { type: "string" } "filter[created_at]": { type: "string" } "filter[end_at]": { type: "string" } "filter[groups]": { type: "string" } "filter[organization]": { type: "string" } "filter[patient]": { type: "string" } "filter[start_at]": { type: "string" } "filter[type]": { type: "string" enum: ["plan-check-in", "reminder", "telephone-call", "office-visit", "video-call"] } "filter[updated_at]": { type: "string" } include: { type: "string" enum: ["owner"] } "page[cursor]": { type: "string" } "page[limit]": { type: "integer" } "page[number]": { type: "integer" } "page[size]": { type: "integer" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }