Sign in

Update booking

documented

Update an existing booking.

PUT /v1/bookings/{orderNumber}Bookingsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Note: According to the Rezdy API for Suppliers specification, the base URL is https://api.rezdy.com/v1/bookings/{orderNumber}, and API keys can be provided either as a header (apiKey: {{REZDY_API_KEY}}) or as a query parameter (apiKey={{REZDY_API_KEY}}). See the Rezdy API docs for Suppliers and authentication details. ([developers.rezdy.com](https://developers.rezdy.com/rezdyapi/index-supplier.html?utm_source=openai))

npx -y keychains@latest curl "https://api.rezdy.com/v1/bookings/{{$orderNumber}}" \
  -X PUT \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "apiKey: {{REZDY_API_KEY}}" \
  -d '{"orderNumber":"{{$orderNumber}}","status":"{{$status}}","customer":{"firstName":"{{$firstName}}","lastName":"{{$lastName}}","email":"{{$email}}"},"startTimeLocal":"{{$startTimeLocal}}","endTimeLocal":"{{$endTimeLocal}}"}'
Update booking · Rezdy · OpenIntegrations