Skip to main content

Get booking statuses

Method GET

https://my.easyweek.io/api/public/v2/bookings/statuses

Description: This endpoint retrieves a list of non-final booking statuses within the system. It's designed to show the various intermediate states a booking can have before reaching a final status, such as being completed or canceled.

Example Request

curl -i -X GET \
https://my.easyweek.io/api/public/v2/bookings/statuses \
-H 'Authorization: Bearer <YOUR_SECRET>' \
-H 'Workspace: <YOUR_WORKSPACE>'

Example Response

{
"data": [
{
"uuid": "87720786-2e2c-4df8-a9f3-7719be6b41c8",
"name": "Bestätigt"
},
{
"uuid": "ab72e362-c8c2-4238-b863-398f03baf457",
"name": "In Arbeit"
}
]
}

Without pagination