Vehicle
Vehicle Get
vehicle/get
POST /vehicle/get
Fetch a single vehicle by its marketpe id.
Request Body
{
"id": "marketpe1234"
}Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | marketpe generated vehicle id. |
Response
status: "success"
{
"status": "success",
"data": {
"id": "marketpe1234",
"createdTime": "2025-11-12T10:00:00.000Z",
"autoIdentifier": "VEH-001",
"autoIdentifierNumber": 1,
"registrationNumber": "MH01AB1234",
"vehicleOwnerType": "OWNED",
"customFieldValues": {},
"rc": {
...
},
"fastag": {
...
}
}
}status: "error"
{
"status": "error",
"message": "Vehicle not found"
}Last updated on