action traccar_put_drivers_id { label: "Update a Driver" provider: traccar method: PUT path: "/drivers/{id}" encoding: json input: { type: "object" properties: { attributes: { type: "object" properties: {} } id: { type: "integer" } name: { type: "string" } uniqueId: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { attributes: { type: "object" properties: {} } id: { type: "integer" } name: { type: "string" } uniqueId: { type: "string" } } } }