action traccar_get_drivers { label: "Fetch a list of Drivers" description: "Without params, it returns a list of Drivers the user has access to" provider: traccar method: GET path: "/drivers" 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: { attributes: { type: "object" properties: {} } id: { type: "integer" } name: { type: "string" } uniqueId: { type: "string" } } } } }