v1

latestOpenAPI 3.0.2EULA2026-07-143221521.2 MB
Booking statuses

Get all booking statuses

Get a list of all booking statuses available in the CareCloud platform. Booking statuses represent the lifecycle states of a booking - for example, pending, confirmed, or cancelled. These IDs are used when creating or updating bookings (POST /bookings).

get/booking-statuses

Query parameters

countinteger

The number of records to return in API response.

⚠️ We recommended adjust the batch size based on processing time. Depending on the response time of the request. Default value of 100 records is used if count parameter is not set.

offsetinteger

The number of records from a collection to skip. Default value of 0 is used when parameter offset is not set.

sort_fieldstring

Name of the sorting parameter. You can sort by any of the first level parameters from the resource response. Response is sorted by the specified field.

sort_direction'ASC' | 'DESC'

Direction of sorting the response list.

Headers

Accept-Languagestring

The unique ID of the language code by ISO 639-1.

Response

OK

Example response

{
  "data": {
    "booking_statuses": [
      {
        "booking_status_id": "8bf3397ab62d3ffd876fc9ae16",
        "name": "Pending",
        "created_at": "2022-09-14 07:39:08.99493",
        "state": 1,
        "last_change": "2022-09-14 07:39:08.99493"
      }
    ],
    "total_items": 1
  }
}