> ## 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.

# Update Booking Notes

> Updates the notes for a specific booking



## OpenAPI

````yaml POST /bookings/update-notes
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/update-notes:
    post:
      summary: Update Booking Notes
      description: Updates the notes for a specific booking
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBookingNotesRequest'
      responses:
        '200':
          description: Notes updated successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the operation was successful
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - Not authorized to update notes
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Booking not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    UpdateBookingNotesRequest:
      type: object
      required:
        - id
        - notes
      properties:
        id:
          type: string
          description: The ID of the booking
        notes:
          type: string
          description: The updated notes for the booking
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````