List properties
const url = 'https://integrations.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/channel-manager/property/list?page=0&size=25';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/list?page=0&size=25' \ --header 'Authorization: Bearer <token>' \ --header 'Wink-Version: 2.0'Returns a page of the properties your channel-manager account is connected to. Page is zero-based and size is capped at 100 records per page.
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-7c2e1f0a5b69Query Parameters
Section titled “Query Parameters”Zero-based page index for pagination
Example
0Number of records per page (maximum 100)
Example
25Header Parameters
Section titled “Header Parameters”Responses
Section titled “Responses”Paginated list of properties connected to the channel-manager account (zero-based page; each item is a ChannelManagerProperty)
Owned pagination envelope: a page of content plus flat page metadata.
object
The elements on this page.
Property entry returned by the channel manager API, containing the property’s identity, location, and currency settings
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
Zero-based index of this page.
The requested page size.
Total number of elements across all pages.
Total number of pages for the current page size.
Number of elements on this page.
Whether this is the first page.
Whether this is the last page.
Example
{ "content": [ { "identifier": "e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18", "name": "The Siam Residences, Bangkok", "city": "Bangkok", "countryCode": "TH", "currencyCode": "THB", "timeZone": "Asia/Bangkok" } ], "number": 0, "size": 20, "totalElements": 1234, "totalPages": 62, "numberOfElements": 20, "first": true, "last": false}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
Conflict — the resource was modified by someone else since you read it; re-read it and retry with the new version
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
