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

# Get Bookings by Conversation

> Retrieves all bookings associated with a specific conversation



## OpenAPI

````yaml GET /bookings/get-bookings-by-conversation/{conversationId}
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /bookings/get-bookings-by-conversation/{conversationId}:
    get:
      summary: Get Bookings by Conversation
      description: Retrieves all bookings associated with a specific conversation
      parameters:
        - name: conversationId
          in: path
          required: true
          schema:
            type: string
          description: The ID of the conversation
      responses:
        '200':
          description: Bookings retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Booking'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - Not a participant in the conversation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Conversation not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Booking:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        dateTimestamp:
          type: number
        startTime:
          type: number
        endTime:
          type: number
        totalFee:
          type: string
        depositFee:
          type: string
        location:
          type: string
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````