Delete Property Listing

The Delete Property Listing call is used to delete the existing property.

Endpoint

POST

https://connect-sandbox.su-api.com/SUAPI/jservice/RemoveProperty

Please find an example input message below.

Attributes

hotelid string (Required)

Hotel id for which you want to delete the property.

Maximum 20 characters allowed.

Sample Request

{
    "hotelid": "TRS1"
}

Response

Upon success, Property along with its related room types, rate plans, etc... will be deleted and we will not be able to reinstate.

Sample Success Response

{
    "Status": "Success"
}

Error

Failure - 953 error will be received if allocated Hotel id which contains the mapping (Active or Inactive) with any of OTA channel(s).

Sample Error Response (953)

{
    "Status": "Fail",
	"Errors": {
		"Code": "953",
		"ShortText": "This Property Have Mapping With Channels"
	}
}

400 error will be received if allocated with incorrect Hotel/Client id.

Sample Error Response (400)

{
    "Status": "Fail",
	"Errors": {
		"Code": "400",
		"ShortText": "Invalid HotelCode (KC10)"
	}
}

Last updated

Was this helpful?