Get booking statuses

Returns a combined list of all booking statuses in the system, default and custom ones

image-png-Mar-22-2024-01-24-05-8317-PM /settings/booking-statuses

https://api.oauth.pabau.com/{api_key}/settings/booking-statuses

Request

Query Parameters:  
api_key *  

 

Response sample

application/json

{
  "success": true,
  "total": 5,
  "booking_statuses": [
    {
      "id": 1,
      "name": "Waiting",
      "value": "Waiting",
      "icon": "",
      "icon_color": "",
    "ord": 1
    },
    {
      "id": 2,
      "name": "Arrived",
      "value": "Checked-in",
      "icon": "",
      "icon_color": "",
    "ord": 2
    },
    {
      "id": 3,
      "name": "Complete",
      "value": "complete",
      "icon": "",
      "icon_color": "",
    "ord": 3
    },
    {
      "id": 4,
      "name": "No Show",
      "value": "no-show",
      "icon": "",
      "icon_color": "",
    "ord": 4
    },
    {
      "id": 5,
      "name": "Running Late",
      "value": "running-late",
      "icon": "",
      "icon_color": "",
    "ord": 5
    }
  ]
}