Skip to main content

Получение деталей бронирования

1. Получение списка бронирований

Запрос:

GET /api/read-reservation/v1/properties/{{property_id}}/bookings?count=1000 HTTP/1.1
Host: partner.tlintegration.com
Authorization: Bearer {{access_token}}

Ответ:

{
"continueToken": "eyJCb29raW5nSWRzIjpbNzU1NDI3N10sIk1pbGxpc2Vjb25kc0Zyb20iOjE2MjU5NjA2MzEyMTN9",
"hasMoreData": true,
"bookingSummaries": [
{
"number": "20210325-7291-6987835",
"propertyId": 7291,
"status": "Cancelled",
"createdDateTime": "2021-03-19T15:18:23Z",
"modifiedDateTime": "2021-03-19T15:18:54Z"
},
{
"number": "20210601-7291-7229443",
"propertyId": 7291,
"status": "Active",
"createdDateTime": "2021-05-12T09:08:47Z",
"modifiedDateTime": "2021-05-12T09:08:47Z"
},
{
"number": "20210601-7291-7229978",
"propertyId": 7291,
"status": "Active",
"createdDateTime": "2021-05-12T16:29:49Z",
"modifiedDateTime": "2021-05-12T16:29:49Z"
},
{
"number": "20210601-7291-7253706",
"propertyId": 7291,
"status": "Cancelled",
"createdDateTime": "2021-05-17T08:04:05Z",
"modifiedDateTime": "2021-05-17T08:04:47Z"
},
{
"number": "20211001-7291-7554276",
"propertyId": 7291,
"status": "Cancelled",
"createdDateTime": "2021-07-10T23:34:30Z",
"modifiedDateTime": "2021-07-10T23:43:51Z"
},
...
]
}

2. Получение деталей бронирования

Запрос:

GET /api/read-reservation/v1/properties/{{property_id}}/bookings/{{booking_number}} HTTP/1.1
Host: partner.tlintegration.com
Authorization: Bearer {{access_token}}

Ответ:

{
"booking": {
"propertyId": "7291",
"number": "20210325-7291-6987835",
"status": "Cancelled",
"createdDateTime": "2021-03-19T15:18:23Z",
"modifiedDateTime": "2021-03-19T15:18:53Z",
"guaranteeInfo": {
"loyalty": null,
"totalPrepaid": 0.0
},
"currencyCode": "RUB",
"roomStays": [
{
"stayDates": {
"arrivalDateTime": "2021-03-25T14:00",
"departureDateTime": "2021-03-26T12:00"
},
"ratePlans": [
{
"id": "307225",
"name": "Онлайн"
}
],
"roomType": {
"id": "340935",
"name": "Стандарт"
},
"guestCount": {
"adultCount": 1,
"childAges": []
},
"guests": [],
"dailyRates": [
{
"ratePlanId": "307225",
"priceBeforeTax": 2800.0000,
"date": "2021-03-25T00:00:00"
}
],
"total": {
"priceBeforeTax": 2800.0000,
"priceAfterTax": 2800.0000,
"taxAmount": 0.0000,
"taxes": [],
"discounts": []
},
"services": [],
"extraStayCharges": {
"earlyArrival": null,
"lateDeparture": null
}
}
],
"services": [],
"total": {
"priceBeforeTax": 2800.0000,
"priceAfterTax": 2800.0000,
"taxAmount": 0.0000,
"taxes": [],
"discounts": []
},
"taxes": [],
"cancellation": {
"penaltyAmount": 0.0,
"cancelledDateTime": "2021-03-19T15:18:53Z"
},
"source": {
"type": "Channel",
"code": "PA2"
},
"customer": null
}
}