Get all vehicle brands
GET/v1/vehicles/brands
Get all vehicle brands
Request
Query Parameters
paginate integer
Possible values: [1, 0]
Paginate the results
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
id integer
ID of the brand
name string
Name of the brand
countries string[]
ISO country codes where the brand is available
{
"data": [
{
"id": 0,
"name": "string",
"countries": [
"KEN",
"GHA",
"NGN",
"ZMB"
]
}
]
}
Bad request.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "400 Bad Request (Client Error)"
}
Unauthenticated - no valid API key was provided.
- application/json
- Schema
- Example (from schema)
Schema
data string
{
"data": "Invalid Token"
}
Loading...