Skip to main content

Ignore Reservation

This operation allows a reservation that is in Booked status to be changed to Ignored status, thus releasing any temporarily held room inventory back for general availability. This would typically be used in a multi-step reservation booking process.

REST Method/Endpoint

MethodEndpoint
POST/v1/api/reservation/ignore

Sample request body:

{
	"hotelId": 10000,
	"crsConfirmationNumber": "10000DV002294",
	"Channels": {
		"PrimaryChannel": {
			"Code": "WEB"
		},
		"SecondaryChannel": {
			"Code": "ABCD"
		},
		"SubSourceCode": "XYZ"
	}
}

Sample successful response:

{
	"crsCancellationNumber": "10000DV002294",
	"status": "Ignored"
}