action traccar_put_devices_id_accumulators { label: "Update total distance and hours of the Device" provider: traccar method: PUT path: "/devices/{id}/accumulators" encoding: json input: { type: "object" properties: { deviceId: { type: "integer" } hours: { type: "number" } id: { type: "integer" } totalDistance: { type: "number" description: "in meters" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }