Property Details API (1.0)

Create and update charges that apply at the property and room level, and setup up different configurations for different dates.

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

Property Details API

Description of the Property Details API.

Operations

Property Settings API

Description of the Property Settings API.

Operations

Property Status API

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": { "warnings": [], "errors": [], "status": "string" }, "warnings": [ {} ], "errors": [ {} ], "meta": { "ruid": "string" } }