Makes

Vehicle makes describe brand or manufacturer of a vehicle.

Make

Vehicle make.

id
integer <int64>

Vehicle make identifier.

enabled
boolean

Whether the vehicle make is enabled.

name
string [ 1 .. 255 ] characters

Name of vehicle make.

{
  • "id": 49,
  • "enabled": true,
  • "name": "FORD"
}

Retrieve vehicle makes

Retrieve a list of vehicle makes.

SecurityOAuth2 and ApiKey
Request
query Parameters
limit
integer <int32> [ 0 .. 1000 ]
Default: 25

Limits the amount of resources in result.

offset
integer <int64> >= 0
Default: 0

Offset of resources in result.

Responses
200

Successful response.

Response Schema: application/json
object >= 0 properties

Applied query parameters, including defaults.

limit
integer <int32> [ 0 .. 1000 ]
Default: 25

The applied value of the limit query parameter on the resources in result.

offset
integer <int64> >= 0
Default: 0

The applied value of the offset query parameter on the resources in result.

property name*
additional property
any
Array of objects (Make) >= 0 items

List of makes.

Array (>= 0 items)
id
integer <int64>

Vehicle make identifier.

enabled
boolean

Whether the vehicle make is enabled.

name
string [ 1 .. 255 ] characters

Name of vehicle make.

total
integer <int64>

Total number of resources matching provided query parameters.

default

An error occurred - see status code and problem response for more information.

get/v2/vehicles/makes
Response samples
application/json
{
  • "query": {
    },
  • "result": [
    ],
  • "total": 3255
}

Retrieve vehicle make

Retrieve a vehicle make by its identifier.

SecurityOAuth2 and ApiKey
Request
path Parameters
make-id
required
integer <int64>

Vehicle make identifier.

Responses
200

Successful response.

Response Schema: application/json
id
integer <int64>

Vehicle make identifier.

enabled
boolean

Whether the vehicle make is enabled.

name
string [ 1 .. 255 ] characters

Name of vehicle make.

default

An error occurred - see status code and problem response for more information.

get/v2/vehicles/makes/{make-id}
Response samples
application/json
{
  • "id": 49,
  • "enabled": true,
  • "name": "FORD"
}