Use the Property API to create or update a property and its settings; check and update property status; as well as create or update property description.
URL https://connect.booking.com
Connectivity Team connectivity@booking.com
Use the Property API to create or update a property and its settings; check and update property status; as well as create or update property description.
curl -i -X GET \
'https://supply-xml.booking.com/property-api/properties/{propertyId}/description'
{ "data": { "text": "string", "language_code": "strin", "last_update": "string" }, "warnings": [ { … } ], "errors": [ { … } ], "meta": { "ruid": "string" } }
curl -i -X PUT \
'https://supply-xml.booking.com/property-api/properties/{propertyId}/description' \
-H 'Content-Type: application/json' \
-d '{
"text": "string",
"language_code": "strin",
"last_update": "string"
}'
{ "data": {}, "warnings": [ { … } ], "errors": [ { … } ], "meta": { "ruid": "string" } }
curl -i -X DELETE \
'https://supply-xml.booking.com/property-api/properties/{propertyId}/description'
{ "data": {}, "warnings": [ { … } ], "errors": [ { … } ], "meta": { "ruid": "string" } }