Update a condition check-in.
PUT/api/vehicles/checkin/condition/:id
Update a condition check-in.
Request
Path Parameters
The id of the checkin
- application/json
Body
required
Array [
]
An optional note from the user when updating the check-in.
photos
object[]
required
Url of the photo. The photo needs to be uploaded via the Photo Upload API.
Possible values: Value must match regular expression ^(Back|Front|DriverSide|DriverSideFront|DriverSideBack|PassengerSide|PassengerSideFront|PassengerSideBack)$, [Back, Front, DriverSide, DriverSideFront, DriverSideBack, PassengerSide, PassengerSideFront, PassengerSideBack]
Type of the photo. A value from one of the condition checkin photo types.
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
Array [
]
Id of the checkin
License plate number
User generated note. For communication between the user to the admin
Admin generated note. Usually used for on-hold or declined check-ins
Check-in date
Possible values: [Confirmed, Declined, OnHold, Pending]
Status of the check-in
Last updated on
photos
object[]
The photos of the vehicle taken from different angles
URL of the photo
Possible values: [Back, Front, DriverSide, DriverSideFront, DriverSideBack, PassengerSide, PassengerSideFront, PassengerSideBack]
Type of the photo. A value from one of the condition checkin photo types.
Latitude at which photo was taken
Longitude at which photo was taken
Indicates that the photo has been marked invalid on review.
Indicates that the review has detected damage to the vehicle.
{
"id": "string",
"license": "string",
"userNote": "string",
"adminNote": "string",
"checkedInAt": "string",
"checkInStatus": "Confirmed",
"updated": "string",
"photos": [
{
"photoUrl": "string",
"type": "Back",
"latitude": 0,
"longitude": 0,
"markedInvalidByReview": true,
"damageDetected": true
}
],
"fraud": true
}