Docs/Channel Manager/Booking.com

Booking.com Setup & Go Live

Create legal entities, check readiness, set contacts, configure policies, and launch your property on Booking.com.

POST/v1/channels/booking/setup

Example

# Check go-live readiness
curl -X POST https://api.repull.dev/v1/channels/booking/setup \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"action": "check-readiness", "propertyId": "BK_123"}'

# Create legal entity
curl -X POST https://api.repull.dev/v1/channels/booking/setup \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"action": "create-legal-entity", "propertyId": "BK_123", "legalName": "Beach Rentals LLC", "country": "US"}'

# Go live
curl -X POST https://api.repull.dev/v1/channels/booking/setup \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"action": "go-live", "propertyId": "BK_123"}'
AI