Create a new pre-evaluation
POST/v1/pre-evaluations
Request
- application/json
Body
required
- Array [
- ]
Originating source of the pre-evaluation request
Chassis number of the vehicle
Manufacturer of the vehicle
Model of the vehicle
Year of manufacture of the vehicle
Color of the vehicle
Engine number of the vehicle
Usage of the vehicle
License number of the vehicle
License expiry date of the vehicle
Value of the vehicle
Type of the vehicle
vehicle_details object[]required
Possible values: >= 4
Details of the vehicle. Must contain at least 4 items and must include the rear, front, left and right sides. Each image URL must be publicly accessible.
Publicly accessible URL of the vehicle image
Possible values: [left, right, rear, front, dashboard, vin-plate, license-plate, video]
Side of the vehicle
Registration number of the vehicle
Possible values: [pre_purchase, claims]
Type of assessment
Responses
- 201
- 400
- 401
- 422
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
data PreEvaluationResponse
Chassis number of the vehicle
Manufacturer of the vehicle
Model of the vehicle
Year of manufacture of the vehicle
Color of the vehicle
Engine number of the vehicle
Usage of the vehicle
License number of the vehicle
License expiry date of the vehicle
Value of the vehicle
Currency of the vehicle value
Type of the vehicle
vehicle_details object[]
Details of the vehicle
URL of the vehicle
Side of the vehicle
Registration number of the vehicle
Type of assessment
Date of creation of the pre-evaluation
Reference of the pre-evaluation
files object[]
Files of the pre-evaluation
URL of the file
Side of the file
Status of the file
{
"data": {
"chassis_number": "string",
"manufacturer": "string",
"model": "string",
"year": "string",
"color": "string",
"engine_no": "string",
"usage": "string",
"license_number": "string",
"license_expiry": "string",
"vehicle_value": "string",
"vehicle_value_currency": "string",
"vehicle_type": "string",
"vehicle_details": [
{
"url": "string",
"side": "string"
}
],
"vehicle_regno": "string",
"assessment_type": "string",
"created_at": "string",
"ref": "string",
"files": [
{
"url": "string",
"side": "string",
"status": "string"
}
]
}
}
Bad request.
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "400 Bad Request (Client Error)"
}
Unauthenticated - no valid API key was provided.
- application/json
- Schema
- Example (from schema)
Schema
{
"data": "Invalid Token"
}
Unprocessable Content
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
error object
property name* string[]
string
{
"message": "The source field is required.",
"error": {
"source": [
"The source field is required."
],
"chassis_number": [
"The chassis number field is required."
]
}
}