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

# Cancel Booking

> Cancels an existing booking



## OpenAPI

````yaml POST /bookings/cancel-booking
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/cancel-booking:
    post:
      summary: Cancel Booking
      description: Cancels an existing booking
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CancelBookingRequest'
      responses:
        '200':
          description: Booking cancelled successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the operation was successful
components:
  schemas:
    CancelBookingRequest:
      type: object
      required:
        - bookingId
      properties:
        bookingId:
          type: string
          description: ID of the booking to cancel

````