action traccar_put_devices_id { label: "Update a Device" provider: traccar method: PUT path: "/devices/{id}" encoding: json input: { 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" } } required: ["id"] additionalProperties: false } output: { 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" } } } }