Odometer registration for vehicle on ticket.
id | string <uuid> Identifier of odometer registration. |
created_at | string <date-time> Date and time of creation. |
is_breaking | boolean Whether this registration is breaking the trend of increasing registrations, meaning its value is lower then the previous registration for the same VIN. |
value | number <float> [ 1 .. 1000000000 ] Odometer registration in kilometers. |
vin | string = 17 characters Vehicle Identification Number (VIN) of the vehicle for this odometer registration. |
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2023-03-15T08:12:28Z",
- "is_breaking": true,
- "value": 182432.42,
- "vin": "JH4KA7630PC007649"
}
Retrieve a list of odometer registrations for a vehicle.
Successful response.
An error occurred - see status code and problem response for more information.
{- "query": {
- "limit": 25,
- "offset": 0,
- "sort_by": {
- "created_at": "asc"
}
}, - "result": [
- {
- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2023-03-15T08:12:28Z",
- "is_breaking": true,
- "value": 182432.42,
- "vin": "JH4KA7630PC007649"
}
], - "total": 3255
}
Add a new odometer registration for a vehicle.
The odometer registration you wish to add.
Created.
id | string <uuid> Identifier of odometer registration. |
created_at | string <date-time> Date and time of creation. |
is_breaking | boolean Whether this registration is breaking the trend of increasing registrations, meaning its value is lower then the previous registration for the same VIN. |
value | number <float> [ 1 .. 1000000000 ] Odometer registration in kilometers. |
vin | string = 17 characters Vehicle Identification Number (VIN) of the vehicle for this odometer registration. |
An error occurred - see status code and problem response for more information.
{- "value": 182432.42,
- "vin": "JH4KA7630PC007649",
- "ticket_id": "595be628-f6f2-4262-9c10-6389c6c4a5b8"
}
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2023-03-15T08:12:28Z",
- "is_breaking": true,
- "value": 182432.42,
- "vin": "JH4KA7630PC007649"
}
Retrieve single odometer registration for a vehicle by identifier.
Successful response.
id | string <uuid> Identifier of odometer registration. |
created_at | string <date-time> Date and time of creation. |
is_breaking | boolean Whether this registration is breaking the trend of increasing registrations, meaning its value is lower then the previous registration for the same VIN. |
value | number <float> [ 1 .. 1000000000 ] Odometer registration in kilometers. |
vin | string = 17 characters Vehicle Identification Number (VIN) of the vehicle for this odometer registration. |
An error occurred - see status code and problem response for more information.
{- "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
- "created_at": "2023-03-15T08:12:28Z",
- "is_breaking": true,
- "value": 182432.42,
- "vin": "JH4KA7630PC007649"
}