cURL
curl --request POST \ --url https://www.skaala.ai/api/v1/bookings/{id}/cancel \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <api-key>' \ --data '{ "body": {} }'
{ "200": {}, "400": {}, "401": {}, "404": {}, "500": {} }
Transform booking to API response format (snake_case)
CreateBooking
Error
curl -X POST https://www.skaala.ai/api/v1/bookings/abc123/cancel \ -H "X-API-Key: sk_live_your_key_here" \ -H "Content-Type: application/json" \ -d '{ // Your request body here }'