Quote booking
documentedRequest a price quote for a booking.
POST /v1/bookings/quoteBookingsno 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/quote" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "apiKey: {{REZDY_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"orderNumber": "{{$orderNumber}}","status": "{{$status}}","createdBy": {"id": "{{$createdBy_id}}","name": "{{$createdBy_name}}","email": "{{$createdBy_email}}"},"resellerId": {{$resellerId}},"resellerUser": {"id": "{{$resellerUser_id}}","name": "{{$resellerUser_name}}"},"customer": {"firstName": "{{$customer_firstName}}","lastName": "{{$customer_lastName}}","phone": "{{$customer_phone}}","email": "{{$customer_email}}"},"items": [{"productCode": "{{$productCode}}","startTimeLocal": "{{$startTimeLocal}}","quantities": [{"optionLabel": "{{$optionLabel}}","value": {{$quantityValue}}}]}],"pickupLocation": {"name": "{{$pickupLocation_name}}","address": "{{$pickupLocation_address}}","city": "{{$pickupLocation_city}}","country": "{{$pickupLocation_country}}"}'