action traccar_get_devices { label: "Fetch a list of Devices" description: "Without any params, returns a list of the user's devices" provider: traccar method: GET path: "/devices" encoding: json input: { type: "object" properties: { all: { type: "boolean" } id: { type: "integer" } uniqueId: { type: "string" } userId: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attributes: { type: "object" properties: {} } category: { type: "string" } contact: { type: "string" } disabled: { type: "boolean" } geofenceIds: { type: "array" items: { type: "integer" } } groupId: { type: "integer" } id: { type: "integer" } lastUpdate: { type: "string" format: "date-time" description: "in IS0 8601 format. eg. `1963-11-22T18:30:00Z`" } model: { type: "string" } name: { type: "string" } phone: { type: "string" } positionId: { type: "integer" } status: { type: "string" } uniqueId: { type: "string" } } } } }