Marcas Vehiculos API
Manage vehicle makes/brands.Vehicle Make Object
Unique identifier for the vehicle make (auto-generated primary key)
Name of the vehicle make/brand (max 15 characters)
Status of the make (default: “Activo”)
GET /api/marcasvehiculos
Retrieve a list of all vehicle makes.Query Parameters
Filter by make name
Filter by status
Response
POST /api/marcasvehiculos
Create a new vehicle make.Request Body
Name of the vehicle make (max 15 characters)
Status of the make (defaults to “Activo” if not provided)
Request Example
Response
GET /api/marcasvehiculos/
Retrieve a specific vehicle make by ID.Path Parameters
The ID of the vehicle make
Response
PUT /api/marcasvehiculos/
Update an existing vehicle make.Path Parameters
The ID of the vehicle make to update
Request Body
Updated name of the vehicle make
Updated status of the make
Request Example
Response
DELETE /api/marcasvehiculos/
Delete a vehicle make.Path Parameters
The ID of the vehicle make to delete
Response
Related Endpoints
- ModelosVehiculos - Vehicle models (linked to makes)
- Vehiculos - Vehicles (references makes)