A lookup call to get all available vehicle creative positions, including their ID and description.
When accessed via a GET request this API method will return a list of all creative positions for vehicles.
As this method is accessed via a GET request there is no HTTP body so options can be specified via the URL.
parameter | type | description |
---|---|---|
This method has no input parameters. |
If accessing GET /api/vehicle-creative-position the following JSON would be returned:
{
"data": [
{
"id": 1,
"on_route": true,
"description": "Front"
},
{
"id": 6,
"on_route": false,
"description": "Internal"
},
{
"id": 3,
"on_route": true,
"description": "Nearside"
},
{
"id": 4,
"on_route": true,
"description": "Offside"
},
{
"id": 2,
"on_route": true,
"description": "Rear"
},
{
"id": 5,
"on_route": true,
"description": "Wrap"
}
]
}
A "data" element that contains an array of creative positions for vehicles including a unique identifier, description and whether or not the position can be on route.