Docs/Channel Manager/Booking.com

Booking.com Content & Photos

Upload photos, update descriptions, amenities, facilities, and policies for your Booking.com properties.

POST/v1/channels/booking/content

Example

# Upload photos
curl -X POST https://api.repull.dev/v1/channels/booking/content \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"propertyId": "BK_123", "type": "photos", "photos": [{"url": "https://...", "tag": "property_building"}]}'

# Update description
curl -X POST https://api.repull.dev/v1/channels/booking/content \
  -H "Authorization: Bearer sk_test_YOUR_KEY" \
  -d '{"propertyId": "BK_123", "type": "description", "description": {"headline": "Beachfront Villa", "summary": "..."}}'
AI