action traccar_get_calendars { label: "Fetch a list of Calendars" description: "Without params, it returns a list of Calendars the user has access to" provider: traccar method: GET path: "/calendars" encoding: json input: { type: "object" properties: { all: { type: "boolean" } userId: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attributes: { type: "object" properties: {} } data: { type: "string" description: "base64 encoded in iCalendar format" } id: { type: "integer" } name: { type: "string" } } } } }