Get reservation information
In order to check if a booking has been submitted successfully, API offers the possibility to immediately verify the booking status once the booking was submitted by sending an additional "/booking_verify" request.
Header
Content-Type: application/x-www-form-urlencodedGET
/booking_verify/:reservation_id
Parameter
| Field | Type | Description |
|---|---|---|
| reservation_id | String | The reservation ID. |
Success Response (200)
Same as reservations creation response
"reference_id": "12345678",
"status": "success",
"reservation": {
"reservation_id": "RES1221151018R899",
"hotel_id": "899",
"status": "Booked",
"confirmation_url": "https://demov3.book-onlinenow.net/index.aspx?Page=18&member=res899h511&pass=812486",
"checkin_date": "2018-11-01",
"checkout_date": "2018-11-02",
"customer": {
"first_name": "stelios",
"last_name": "kalogeropoulos",
"phone_number": "3-(292)055-6386",
"email": "[email protected]",
"country": "GR"
},
"rooms": [
{
"party": {
"adults": 2,
"children": [
4
]
},
"traveler_first_name": "stelios",
"traveler_last_name": "kalogeropoulos"
}
],
"receipt": {
"line_items": [
{
"price": {
"amount": 166,
"currency": "EUR"
},
"type": "net_rate",
"paid_at_checkout": false,
"description": "Total amount at check-in"
},
{
"price": {
"amount": 16.6,
"currency": "EUR"
},
"type": "vat",
"paid_at_checkout": false,
"description": "Total tax at check-in"
}
],
"final_price_at_booking": {
"amount": 182.6,
"currency": "EUR"
},
}
}
}