GET api/Vehicles/{token}
Get the vehicles for the specified tour search
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
VehicleResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
The tour search token |
string |
None. |
| response |
The response object |
Collection of Vehicle |
None. |
| status |
The response status |
ResponseStatus |
None. |
| success |
An indication that the request was successfully completed or failed |
boolean |
None. |
| datestamp |
The date and time that the request was completed |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"response": [
{
"registration": "sample string 1",
"make": "sample string 2",
"model": "sample string 3",
"colour": "sample string 4"
},
{
"registration": "sample string 1",
"make": "sample string 2",
"model": "sample string 3",
"colour": "sample string 4"
}
],
"status": {
"code": 1,
"message": "sample string 2"
},
"success": true,
"datestamp": "2026-08-03T20:33:27.1387671+01:00"
}