Skip to main content

Method

PATCH /v1/bookings/:id

Path Parameters

id
string
required
Booking ID

Body Parameters

status
string
Booking status
notes
string
Internal notes

Headers

Authorization
string
required
Bearer token (e.g. Authorization: Bearer YOUR_API_KEY)
content-type
string
application/json
curl -X PATCH https://api.voyantcloud.com/v1/bookings/bkg_456def \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "content-type: application/json" \
  -d '{ "notes": "VIP" }'
{
  "id": "bkg_456def",
  "status": "confirmed",
  "notes": "VIP"
}