Skip to main content
GET
/
api
/
v1
/
ops
/
offerings
/
trips
/
{tripId}
/
trip-itineraries
/
{tripItineraryId}
/
seat-map
Get Offering Seat Map
curl --request GET \
  --url https://api.example.com/api/v1/ops/offerings/trips/{tripId}/trip-itineraries/{tripItineraryId}/seat-map \
  --header 'Authorization: Bearer <token>'
[
  {
    "floor": "FIRST",
    "seats": [
      {
        "seatId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "label": "1A",
        "row": 1,
        "column": "A",
        "side": "LEFT",
        "status": "AVAILABLE",
        "seatType": {
          "seatTypeId": "0195e7a1-8b5c-7d3e-9f4a-2c6b8d0e1f3a",
          "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.

Path Parameters

tripId
string<uuid>
required

Trip identifier

Example:

"0195e7a1-8b5c-7d3e-9f4a-2c6b8d0e1f3b"

tripItineraryId
string<uuid>
required

Trip itinerary identifier

Example:

"0195e7a1-8b5c-7d3e-9f4a-2c6b8d0e1f3a"

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

floor
enum<string>
required

Floor level

Available options:
FIRST,
SECOND
Example:

"FIRST"

seats
object[]
required

Seats of this floor