Docs/Channel Manager/Booking.com

Booking.com Webhooks (CNS)

Manage Connectivity Notification Service (CNS) webhook subscriptions — subscribe to Booking.com events like reservation changes.

GET/v1/channels/booking/webhooks

Example

# List subscriptions
curl https://api.repull.dev/v1/channels/booking/webhooks \
  -H "Authorization: Bearer sk_test_YOUR_KEY"

# Subscribe
curl -X POST https://api.repull.dev/v1/channels/booking/webhooks \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"notification_type": "reservation", "callback_url": "https://your-app.com/webhooks/booking"}'
AI