Manage Booking.com Properties
Create properties, add rooms, push content, unlist, and relist on Booking.com.
POST
/v1/channels/booking/propertiesExample
# List connected Booking.com properties
curl https://api.repull.dev/v1/channels/booking/properties \
-H "Authorization: Bearer sk_test_YOUR_KEY"
# Create a new property on Booking.com
curl -X POST https://api.repull.dev/v1/channels/booking/properties \
-H "Authorization: Bearer sk_test_YOUR_KEY" \
-d '{"listingId": 123, "name": "Beach House", "address": {"city": "Miami", "country": "US"}}'AI