Booking.com Guest Messaging
Read conversations and send messages to Booking.com guests.
POST
/v1/channels/booking/messagingExample
# Send a message to a guest
curl -X POST https://api.repull.dev/v1/channels/booking/messaging \
-H "Authorization: Bearer sk_test_YOUR_KEY" \
-d '{"reservationId": "4218850692", "message": "Welcome! Here are your check-in instructions..."}'
# Get conversation history
curl "https://api.repull.dev/v1/channels/booking/messaging?reservationId=4218850692" \
-H "Authorization: Bearer sk_test_YOUR_KEY"AI