Create User Car Brands
POST /user/car-brands/create/
Use the POST /user/car-brands/create/
endpoint to create a new car brand.
Parameters
Name
Description
data
(Body) The data object containing the car brand details.
name
(String) The name of the car brand. Required. Must be between 1 and 255 characters.
Example Request Body
{
"name": "Toyota"
}
Example Response Body
{
"id": 1,
"name": "Toyota"
}
Last updated