Docs/Channels/Booking.com

Booking.com Reviews

List guest reviews and post responses.

GET/v1/channels/booking/reviews

Example

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

# Respond to a review
curl -X POST https://api.repull.dev/v1/channels/booking/reviews \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"reviewId": "REV_456", "response": "Thank you for staying with us!"}'
AI