Method
PATCH /v1/bookings/:id
Path Parameters
Booking ID
Body Parameters
Booking status
Internal notes
Headers
Bearer token (e.g.
Authorization: Bearer YOUR_API_KEY)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"
}
Update an existing booking.
PATCH /v1/bookings/:id
Authorization: Bearer YOUR_API_KEY)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"
}