Get List of Car Brands

GET /user/car-brands/

Use the GET /user/car-brands/ endpoint to retrieve the list of car brands available for the user.

Parameters

No parameters required.

Responses

Response Content Type:

  • 200 OK

Field

Type

Description

id

Integer

ID of the car brand (read-only)

name

String

Name of the car brand, with a max length of 255 and a min length of 1

Example Response

[
  {
    "id": 1,
    "name": "Toyota"
  },
  {
    "id": 2,
    "name": "Honda"
  }
]

Last updated