Update booking
documentedUpdates a booking.
PUT /v2/bookings/{booking_id}Bookingsno 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://connect.squareup.com/v2/bookings/{{$booking_id}}" \
-X PUT \
-H "Square-Version: 2026-01-22" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-d '{"idempotency_key": "{{$idempotency_key}}", "booking": {"version": {{$version}}, "customer_note": "{{$customer_note}}", "location_type": "{{$location_type}}", "address": {"address_line_1": "{{$address_line_1}}", "address_line_2": "{{$address_line_2}}", "locality": "{{$locality}}", "administrative_district_level_1": "{{$administrative_district_level_1}}", "postal_code": "{{$postal_code}}"}}}'