Property Information
Overview
The getPropertyInformation
operation can be used to retrieve detailed information for a property or list of properties configured on the Allora IBE.
Request
Element | Type | Description |
siteIDList | Array | If provided, results will only be returned for the properties specified. If not provided, all properties enabled for your API user will be returned. |
channelIDList | Array | If provided, and the |
options | Array | Specify one or more of the available options to determine what information is returned in the response. List of Options |
Sample
{
"userAuth": {
"username": "username",
"password": "password"
},
"operation": "getPropertyInformation",
"siteIDList": [
1853
],
"channelIDList": [
],
"options": [
]
}
Options
Option | Description |
fullPropertyInformation | Property information including name, address, geolocation, facilities and other property configuration options. |
rateInformation | List of rates available on that property. Only rates on the specified channel are returned. |
roomInformation | List of rooms available on that property. |
rateGroupInformation | List of rate groups available on that property. Only rate groups with rates that are availabile on the channel specified are returned. |
taxPolicyInformation | List of tax policies configured for that property. Where a rate has a specific tax policy selected, the taxPolicyID will be included in the rate information Any rate that has a NULL taxPolicyID indicates pricing inclusive of all taxes and charges. |
imageInformation | Where you require the fully-resolved URLs for all property, rate or room imagery, this option must be included. This option adds a small performance overhead and should be used only if required. |
Â
Response
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 for the property. |
 | primaryName |  | String | Property name. |
 | address |  | String | Property address. |
 | phone |  | String | Property phone number. |
 | fax |  | String | Property fax number. |
 | url |  | String | Property website url. |
 | stars |  | Integer | Property star rating. |
 | currency |  | String | Property currency. |
 | portalShort |  | String | Property portal description. |
 | notificationEmail |  | String | Property primary notification email. |
 | acceptedCards |  | Array | Property accepted payment cards. |
 | timezone |  | String | Property timezone. |
 | earliestETA |  | String | Earlier checkin time. |
 | latestETA |  | String | Latest checkout time. |
 | cutoffTime |  | String | Latest cutoff time for same day bookings. |
 | facilities |  | Array | Array of facilities available at the property. |
 | images |  | Array | Array of imageIDs used by the property. |
 | childPriceOptions |  | Array | Array of child price options. |
 |  | ageGroup | String | Identifier for this child price option in the Allora IBE. |
 |  | label | String | Label for this child price option. |
 |  | minAge | Integer | Minimun age for this child price option. |
 |  | maxAge | Integer | Maximum age for this child price option. |
 | geoLocation |  | Array | Geocoordinates for the property. |
 |  | latitude | String | Latitude coordinates. |
 |  | longitude | String | Longitude coordinates. |
 | portalURL |  | String | Portal URL for the property. |
Sample
{
"siteList": [
{
"siteID": 1853,
"primaryName": "TestHotel Mahony",
"address": "Avvio House, Lonsdale Road, National Technology Park, Castletroy, Co. Limerick V94 AW2X",
"phone": "+353-61-335680",
"fax": "",
"url": "http://www.shrgroup.com",
"stars": 4,
"currency": "EUR",
"portalShort": false,
"notificationEmail": "martin.mahony@shrgroup.com",
"acceptedCards": [
"VISA",
"MC",
"AMEX"
],
"timezone": "Europe/Dublin",
"earliestETA": "12:00",
"latestETA": "23:30",
"cutoffTime": "23:30",
"facilities": [
"01",
"11",
"14",
"21",
"24"
],
"images": [
3160
],
"childPriceOptions": [
{
"ageGroup": "child1",
"label": "ch1",
"minAge": 2,
"maxAge": 5
},
{
"ageGroup": "child2",
"label": "ch2",
"minAge": 6,
"maxAge": 10
},
{
"ageGroup": "child3",
"label": "ch3",
"minAge": 11,
"maxAge": 15
},
{
"ageGroup": "child4",
"label": "ch4",
"minAge": 16,
"maxAge": 21
},
{
"ageGroup": "infant",
"label": "inf",
"minAge": 0,
"maxAge": 2
}
],
"portalURL": "https://dev.avvio.com/convert/site/TestHotel Mahony[@PORTALTOKEN@]/",
"platformURL": {
"bookingEngineURL": "https://dev.avvio.com/convert/site/TestHotel Mahony/",
"bookingEngineGuestURL": "https://dev.avvio.com/convert/site/TestHotel Mahony/guests.php?checkin=@CHECKIN@&nights=@NIGHTS@&rateID=@RATEID@&roomIDs=@ROOMIDS@&availability=5ufo6wrHHjOm_c_5SmTMNwPOzPymyxK3hR_wvQUFK61zIODWM-Gg0I16pZ2ywyQ9va9qYN7R-W-YBQLeD6BShg"
}
}
]
}