Skip to main content
GET
/
api
/
v1
/
ops
/
vehicles
/
seat-types
List Seat Type Suggestions
curl --request GET \
  --url https://api.example.com/api/v1/ops/vehicles/seat-types \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "Executive",
    "color": "#3B82F6",
    "price": 5000
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

fields
string

Comma-separated list of fields to include in the response. Supports dot notation for nested projection (e.g. id,name,user.email,trips.route.id). Unknown fields are silently dropped.

Response

OK

name
string
required

Category name

Example:

"Executive"

color
string
required

Display color

Example:

"#3B82F6"

price
integer
required

Base price in cents

Example:

5000