For the complete documentation index, see llms.txt. This page is also available as Markdown.

Reservation Detail

API: Channels Plus · Operation: Reservations · Direction: Channel → SM · Method: Push (Channel-initiated)

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
get/reservations/{bookingReferenceId}
GET /reservations/{bookingReferenceId} HTTP/1.1
x-sm-api-id: text
x-sm-api-key: text
Accept: */*
{
  "bookingReferenceId": "text",
  "propertyUuid": "text",
  "propertyName": "text",
  "bookedOnDate": "2026-01-01",
  "checkInDate": "2026-01-01",
  "checkOutDate": "2026-01-01",
  "currencyCode": "text",
  "paymentTotal": 1,
  "totalTaxes": 1,
  "totalFees": 1,
  "status": "Confirmed",
  "channelCommissionPercentage": 1,
  "channelCommissionAmount": 1,
  "siteminderCommissionAmount": 1,
  "cancellationPolicy": {
    "policyType": "non-refundable",
    "freeCancellationUntilDays": 1
  },
  "nonRefundableDateTime": "2026-01-01T00:00:00.000Z"
}

sparkles

Still have questions?

Last updated

Was this helpful?