> ## Documentation Index
> Fetch the complete documentation index at: https://docs.devmob.app.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Offering Seat Map

> Returns offering seat map.



## OpenAPI

````yaml /api-reference/ops/openapi.json get /api/v1/ops/offerings/trips/{tripId}/trip-itineraries/{tripItineraryId}/seat-map
openapi: 3.0.0
info:
  title: OABUS OPS API
  description: OABUS API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/v1/ops/offerings/trips/{tripId}/trip-itineraries/{tripItineraryId}/seat-map:
    get:
      tags:
        - Offerings
      summary: Get Offering Seat Map
      description: Returns offering seat map.
      operationId: getOfferingSeatMap
      parameters:
        - name: tripId
          required: true
          in: path
          schema:
            type: string
            format: uuid
            description: Trip identifier
            example: 0195e7a1-8b5c-7d3e-9f4a-2c6b8d0e1f3b
        - name: tripItineraryId
          required: true
          in: path
          schema:
            type: string
            format: uuid
            description: Trip itinerary identifier
            example: 0195e7a1-8b5c-7d3e-9f4a-2c6b8d0e1f3a
        - name: fields
          required: false
          in: query
          description: >-
            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.
          schema:
            type: string
      responses:
        '200':
          $ref: '#/components/responses/GetOfferingSeatMap200Response2'
        '400':
          $ref: '#/components/responses/GetOfferingSeatMap400Response2'
        '500':
          $ref: '#/components/responses/GetOfferingSeatMap500Response2'
components:
  responses:
    GetOfferingSeatMap200Response2:
      content:
        application/json:
          schema:
            type: array
            items:
              type: object
              properties:
                floor:
                  type: string
                  enum:
                    - FIRST
                    - SECOND
                  description: Floor level
                  example: FIRST
                seats:
                  type: array
                  items:
                    type: object
                    properties:
                      seatId:
                        type: string
                        format: uuid
                        description: Seat identifier
                      label:
                        type: string
                        description: Seat label
                        example: 1A
                      row:
                        type: integer
                        description: Row number
                        example: 1
                      column:
                        type: string
                        description: Column identifier
                        example: A
                      side:
                        type: string
                        enum:
                          - LEFT
                          - RIGHT
                        description: Seat side
                        example: LEFT
                      status:
                        type: string
                        enum:
                          - AVAILABLE
                          - UNAVAILABLE
                        description: Seat availability
                        example: AVAILABLE
                      seatType:
                        type: object
                        properties:
                          seatTypeId:
                            type: string
                            format: uuid
                            description: Seat type identifier
                            example: 0195e7a1-8b5c-7d3e-9f4a-2c6b8d0e1f3a
                          name:
                            type: string
                            description: Category name
                            example: Executive
                          color:
                            description: Display color
                            example: '#3B82F6'
                          price:
                            type: integer
                            description: Base price in cents
                            example: 5000
                        required:
                          - seatTypeId
                          - name
                          - color
                          - price
                        additionalProperties: false
                        description: Seat type
                    required:
                      - seatId
                      - label
                      - row
                      - column
                      - side
                      - status
                      - seatType
                    additionalProperties: false
                  description: Seats of this floor
              required:
                - floor
                - seats
              additionalProperties: false
            description: Seat map
      description: OK
    GetOfferingSeatMap400Response2:
      content:
        application/json:
          example:
            errors:
              - message: required
                path: name
            message: Bad Request Error
            statusCode: 400
          schema:
            properties:
              message:
                type: string
              statusCode:
                enum:
                  - 400
                type: number
              errors:
                items:
                  properties:
                    message:
                      type: string
                    path:
                      type: string
                  required:
                    - message
                    - path
                  type: object
                type: array
            required:
              - message
              - statusCode
            type: object
      description: Bad Request Error
    GetOfferingSeatMap500Response2:
      content:
        application/json:
          example:
            message: Internal Server Error
            statusCode: 500
          schema:
            properties:
              message:
                type: string
              statusCode:
                enum:
                  - 500
                type: number
            required:
              - message
              - statusCode
            type: object
      description: Internal Server Error

````