...
Element | Type | Description | |||
siteList | Array | The siteList array will contain an entry for each site as requested in the siteIDList section of the request. | |||
siteID | Integer | The IBE siteID of the property. | |||
primaryName | String | Property name. | |||
currency | String | Property currency. | |||
rates | Array | The rates array will contain an entry for each rate that has availability matching the criteria in the request. | |||
rateID | Integer | The internal rateID for the rate in the IBE. | |||
bestPrice | Integer|Float | The best price available matching the criteria in the request. | |||
bestPriceRooms | Array | The bestPriceRooms array will contain an entry containing the room with the best price for each of the parties in the request. | |||
roomID | Integer | The internal roomID for the room in the IBE. | |||
partyIndex | Integer | The index of the party in the request. | |||
price | Integer|Float | The price for this room matching the party criteria at this index in the request. | |||
strikePrice | Integer|Float | If strike pricing is configured and valid for this room/rate this will indicate the value of the corresponding strike price. | |||
allRoomOptions | Array | ||||
roomID | Integer | The internal roomID for the room in the IBE. | |||
partyIndex | Integer | The index of the party in the request. | |||
price | Integer|Float | The price for this room matching the party criteria at this index in the request. | |||
strikePrice | Integer|Float | If strike pricing is configured and valid for this room/rate this will indicate the value of the corresponding strike price. |
Sample
Code Block | ||
---|---|---|
| ||
{ "siteList": [ { "siteID": 1853, "primaryName": "TestHotel Mahony", "currency": "EUR", "rates": [ { "rateID": 4241302, "bestPrice": 450, "bestPriceRooms": [ { "roomID": 4239871, "partyIndex": 1, "price": 250 }, { "roomID": 4239871, "partyIndex": 2, "price": 200 } ], "allRoomOptions": [ { "roomID": 4239871, "partyIndex": 1, "price": 250 }, { "roomID": 4239871, "partyIndex": 2, "price": 200 } ] }, { "rateID": 4208974, "bestPrice": 665, "bestPriceRooms": [ { "roomID": 4194466, "partyIndex": 1, "price": 315 }, { "roomID": 4194466, "partyIndex": 2, "price": 350 } ], "allRoomOptions": [ { "roomID": 4194466, "partyIndex": 1, "price": 315 }, { "roomID": 4194466, "partyIndex": 2, "price": 350 } ] } ] } ] } |
...