Property API (1.0)

Use the Property API to create or update a property, as well as check and update its status

Languages
Servers
https://supply-xml.booking.com/property-api/

Property Details API

Create, update and retrieve property details

Operations

Property Settings API

Add, update or retrieve property settings

Operations

Property Status API

Check if a property is ready to open; open or close a property

Operations

Check property status

Request

Path
propertyIdinteger(int32)required
Bodyapplication/jsonrequired
operationstringrequired
Enum"CHECK""OPEN""CLOSE"
reasonobject(Reason)
curl -i -X POST \
  'https://supply-xml.booking.com/property-api/properties/{propertyId}/status' \
  -H 'Content-Type: application/json' \
  -d '{
    "operation": "CHECK",
    "reason": {
      "type": "OTHER",
      "description": "string"
    }
  }'

Responses

default response

Bodyapplication/json
dataobject(PropertyStatusOutput)
warningsArray of objects(ApiError)
errorsArray of objects(ApiError)
metaobject(ResponseMeta)
Response
application/json
{ "data": { "status": "string" }, "warnings": [ {} ], "errors": [ {} ], "meta": { "ruid": "string" } }