Reservation Detail
get
Returns information regarding a specific reservation based on the provided booking reference ID. Only confirmed and cancelled reservations will return results. Reservations in pending status will return 404.
Path parameters
bookingReferenceIdstringRequired
The unique identifier of the reservation. Only one booking reference ID can be passed per request.
Header parameters
x-sm-api-idstringRequired
The api id for channel
x-sm-api-keystringRequired
The api key for channel
Responses
200
Successful response
application/json
400
Invalid request
application/json
401
Unauthorized
application/json
404
The specified resource was not found
application/json
500
Unexpected error occurred
application/json
get
GET /reservations/{bookingReferenceId} HTTP/1.1
Host:
x-sm-api-id: text
x-sm-api-key: text
Accept: */*
{
"bookingReferenceId": "text",
"propertyUuid": "text",
"propertyName": "text",
"bookedOnDate": "2025-07-04",
"checkInDate": "2025-07-04",
"checkOutDate": "2025-07-04",
"currencyCode": "text",
"paymentTotal": 1,
"totalTaxes": 1,
"totalFees": 1,
"status": "Confirmed",
"channelCommissionPercentage": 1,
"channelCommissionAmount": 1,
"siteminderCommissionAmount": 1,
"cancellationPolicy": {
"policyType": "non-refundable",
"freeCancellationUntilDays": 1
},
"nonRefundableDateTime": "2025-07-04T07:39:52.472Z"
}
Last updated
Was this helpful?