action traccar_get_geofences { label: "Fetch a list of Geofences" description: "Without params, it returns a list of Geofences the user has access to" provider: traccar method: GET path: "/geofences" encoding: json input: { type: "object" properties: { all: { type: "boolean" } deviceId: { type: "integer" } groupId: { type: "integer" } refresh: { type: "boolean" } userId: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { area: { type: "string" } attributes: { type: "object" properties: {} } calendarId: { type: "integer" } description: { type: "string" } id: { type: "integer" } name: { type: "string" } } } } }