> ## 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/customer/openapi.json get /api/v1/customer/offerings/trips/{tripId}/trip-itineraries/{tripItineraryId}/seat-map
openapi: 3.0.0
info:
  title: DEVMOB Customer API
  description: DEVMOB API
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: Address
    description: Customer addresses
  - name: Auth
    description: Authentication and token lifecycle
  - name: Benefit Program
    description: Fare benefit programs
  - name: Benefit Request
    description: Fare benefit requests and documents
  - name: Checkout
    description: Checkout creation and retrieval
  - name: Credit Grant
    description: Customer credits
  - name: Invite
    description: Invitation preview and acceptance
  - name: Notification
    description: Customer inbox notifications
  - name: Offering
    description: Trip offerings and seat maps
  - name: Order
    description: Customer orders
  - name: OTP
    description: One-time password flows
  - name: Payment
    description: Payments
  - name: Payment Method
    description: Saved payment methods
  - name: Point
    description: Point lookup
  - name: Profile
    description: Authenticated customer profile
  - name: Promotion
    description: Promotions
  - name: Routing
    description: Routing helpers
  - name: Session
    description: Authenticated sessions
  - name: Storage
    description: Storage uploads
  - name: Support
    description: Support cases
  - name: Ticket
    description: Customer tickets
  - name: Trip
    description: Customer trip access
  - name: Trip Review
    description: Trip reviews
paths:
  /api/v1/customer/offerings/trips/{tripId}/trip-itineraries/{tripItineraryId}/seat-map:
    get:
      tags:
        - Offering
      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':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OfferingSeatMapFloor'
          description: OK
        '400':
          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
        '500':
          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
components:
  schemas:
    OfferingSeatMapFloor:
      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
              labelNumber:
                type: integer
                description: Sequential seat number
                example: 1
              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'
                    type: string
                  price:
                    type: integer
                    description: Base price in cents
                    example: 5000
                required:
                  - seatTypeId
                  - name
                  - color
                  - price
                additionalProperties: false
                description: Seat type
            required:
              - seatId
              - label
              - labelNumber
              - row
              - column
              - side
              - status
              - seatType
            additionalProperties: false
          description: Seats of this floor
      required:
        - floor
        - seats
      additionalProperties: false

````