The Vehicles API manages the physical fleet used for deliveries. Unlike most resources in the Rappi2 API, vehicles are identified by theirDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/JorLOrT/rappi2/llms.txt
Use this file to discover all available pages before exploring further.
placa (licence plate string) rather than an integer ID — use the plate value wherever a path parameter is shown as {placa}. Deleting a vehicle performs a soft delete, setting activo = false and estado = Inactivo.
Vehicle states
| State | Description |
|---|---|
Operativo | Vehicle is ready and can be assigned to deliveries. |
Mantenimiento | Vehicle is temporarily out of service for maintenance. |
Inactivo | Vehicle is permanently decommissioned (soft-deleted). |
List vehicles
vehiculos:read
Query parameters
Number of records to skip for pagination.
Maximum number of records to return. Hard cap: 200.
Filter by active status.
Filter by operational state:
Operativo, Mantenimiento, or Inactivo.Response 200
Array of vehicle objects.
Licence plate — the unique primary key for this resource.
Vehicle category (e.g.
moto, camioneta, furgon).Maximum payload capacity in kilograms.
Operational state:
Operativo, Mantenimiento, or Inactivo.Timestamp of the last or next scheduled maintenance (ISO 8601).
Whether the vehicle record is active.
Create a vehicle
400 if the plate is already registered.
Required permission: vehiculos:write
Request body
Licence plate. Maximum 15 characters. Must be unique.
Vehicle category.
Maximum payload in kilograms.
Initial operational state:
Operativo, Mantenimiento, or Inactivo.Maintenance date (ISO 8601 timestamp).
Response 201
The newly created vehicle object.
Get a vehicle
404 if not found.
Required permission: vehiculos:read
Path parameters
Licence plate of the vehicle.
Response 200
Vehicle object.
Update a vehicle
vehiculos:write
Path parameters
Licence plate of the vehicle.
Request body
All fields are optional.New vehicle category.
New payload capacity in kilograms.
New operational state:
Operativo, Mantenimiento, or Inactivo.Updated maintenance timestamp.
Toggle the active flag.
Response 200
Updated vehicle object.
Decommission a vehicle
activo = false and estado = Inactivo. The record is preserved in the database.
Required permission: vehiculos:delete
Path parameters
Licence plate of the vehicle.