Booking details
Input parameters
| Name | Type | Details | Mandatory | Description |
|---|---|---|---|---|
| type | string | HOTEL | Y | The type of the booking. |
| booking_id | string | Max length 100 | Y | Your reference for this booking. |
| check_in_date | string | YYYY-mm-dd | Y | The check_in date of the booking. |
| check_out_date | string | YYYY-mm-dd | Y | The check_out date of the booking. |
| total_booking_amount | int | Y | The total booking amount in cents (500 XXX = 5.00 XXX). | |
| booking_currency | string | [A-Z]3 | Y | The booking currency (ISO-4217). |
Please note that the total_booking_amount and booking_currency are for information purpose only.
Example
{
"type": "HOTEL",
"booking_id": "test-ref",
"check_in_date": "2016-01-25",
"check_out_date": "2016-01-30",
"total_booking_amount": 5000,
"booking_currency": "EUR"
}