Create booking
documentedCreate a new booking for a product.
POST /v1/bookingsBookingsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.rezdy.com/v1/bookings" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "apiKey: {{REZDY_API_KEY}}" \
-d '{"customer": {"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "phone": "{{$phone}}"}, "items": [{"productCode": "{{$productCode}}", "startTimeLocal": "{{$startTimeLocal}}", "quantities": [{"optionLabel": "{{$optionLabel}}", "value": {{$quantity}}}]}], "pickupLocation": {"locationName": "{{$pickupLocationName}}"}, "sendNotifications": {{$sendNotifications}} }'"