Show property
const url = 'https://integrations.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/channel-manager/property/e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18';const options = { method: 'GET', headers: {'Wink-Version': '2.0', Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://integrations.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/channel-manager/property/e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18 \ --header 'Authorization: Bearer <token>' \ --header 'Wink-Version: 2.0'Returns the given property’s details together with its full list of room-level master rates.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Rate provider (channel-manager account) identifier (UUID)
Example
d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69Property identifier (UUID)
Example
e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”Property details with its complete list of master rates
A property together with its complete list of master rates (room type + rate plan combinations)
object
Property details
object
Property ID
Property name
City property is located in or near
Country code property is located in
Currency code property uses
Timezone property is located in
List of master rates (room type + rate plan combinations) for this property
A master rate combining a room type and a rate plan, including occupancy limits and base rate modifiers
object
Master rate identifier
Property identifier
Master rate name (room type + rate plan)
Room type identifier
Rate plan identifier
Room type name for display
Rate plan name for display
Minimum occupancy for this room type
Maximum occupancy for this room type
Maximum number of adults allowed in this room type
Maximum number of children allowed in this room type
Number of adults the base rate price is calculated for
Number of children the base rate price is calculated for
Base nightly rate in high-demand period
object
Monetary amount value
ISO 4217 currency code
Rate modifier for single occupancy (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Monetary amount value
ISO 4217 currency code
Rate modifier for extra occupants (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Monetary amount value
ISO 4217 currency code
Rate modifier for extra children (JSON representation of VariableCharge)
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Monetary amount value
ISO 4217 currency code
Example
{ "property": { "identifier": "e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18", "name": "The Siam Residences, Bangkok", "city": "Bangkok", "countryCode": "TH", "currencyCode": "THB", "timeZone": "Asia/Bangkok" }, "list": [ { "identifier": "5e8a3b7c-0d4f-4a2b-8c1d-9e6f2a0b4c73", "propertyIdentifier": "e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18", "name": "Superior Deluxe - BAR", "roomTypeIdentifier": "6f9b4c8d-1e5a-4b3c-9d2e-8a7f0c1b5e43", "ratePlanIdentifier": "7a0c5d9e-2f6b-4c1a-8e4d-3b9f1a0c6d52", "guestRoomName": "Superior Deluxe", "ratePlanName": "BAR", "minOccupancy": 1, "maxOccupancy": 4, "maxAdultOccupancy": 2, "maxChildOccupancy": 2, "includedAdultOccupancy": 2, "includedChildOccupancy": 0, "baseRate": 450, "singleOccupancyRateModifier": { "type": "PERCENTAGE", "value": "-10.00" }, "extraPaxRateModifier": { "type": "FIXED_AMOUNT", "value": "35.00" }, "extraChildRateModifier": { "type": "PERCENTAGE", "value": "-50.00" } } ]}Bad Request — missing or invalid request parameter or body
object
object
Example
Unauthorized — authentication is required or the session has expired
object
object
Example
Forbidden — authenticated but lacking the required permission or scope
object
object
Example
Not Found — the requested resource does not exist
object
object
Example
Method Not Allowed — the HTTP verb is not supported on this endpoint
object
object
Example
Unsupported Media Type — use application/json
object
object
Example
Internal Server Error — an unexpected failure occurred on the server
object
object
Example
Service Unavailable — a downstream dependency is unreachable