Back to Collection Items
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
set queryParams [new_CkJsonObject]
CkJsonObject_UpdateString $queryParams "roomStayStartDate" "{{currentdate}}"
CkJsonObject_UpdateString $queryParams "roomStayEndDate" "{{currentdateplus1}}"
CkJsonObject_UpdateInt $queryParams "roomStayQuantity" 2
CkJsonObject_UpdateInt $queryParams "adults" 1
CkJsonObject_UpdateInt $queryParams "children" 0
CkJsonObject_UpdateInt $queryParams "limit" 5
CkHttp_SetRequestHeader $http "Content-Type" "application/json"
CkHttp_SetRequestHeader $http "x-hotelid" "{{HotelId}}"
# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"
CkHttp_SetRequestHeader $http "x-app-key" "{{AppKey}}"
# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://domain.com/par/v0/hotels/{{HotelId}}/availability" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkJsonObject $queryParams
exit
}
puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp
delete_CkHttp $http
delete_CkJsonObject $queryParams
Curl Command
curl -G -d "roomStayStartDate=%7B%7Bcurrentdate%7D%7D"
-d "roomStayEndDate=%7B%7Bcurrentdateplus1%7D%7D"
-d "roomStayQuantity=2"
-d "adults=1"
-d "children=0"
-d "limit=5"
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
https://domain.com/par/v0/hotels/{{HotelId}}/availability
Postman Collection Item JSON
{
"name": "Search hotel availability",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
},
{
"key": "x-hotelid",
"value": "{{HotelId}}",
"type": "text"
},
{
"key": "x-app-key",
"value": "{{AppKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/par/v0/hotels/{{HotelId}}/availability?roomStayStartDate={{currentdate}}&roomStayEndDate={{currentdateplus1}}&roomStayQuantity=2&adults=1&children=0&limit=5",
"host": [
"{{HostName}}"
],
"path": [
"par",
"v0",
"hotels",
"{{HotelId}}",
"availability"
],
"query": [
{
"key": "roomStayStartDate",
"value": "{{currentdate}}"
},
{
"key": "roomStayEndDate",
"value": "{{currentdateplus1}}"
},
{
"key": "roomStayQuantity",
"value": "2"
},
{
"key": "adults",
"value": "1"
},
{
"key": "children",
"value": "0"
},
{
"key": "limit",
"value": "5"
},
{
"key": "childAge",
"value": "",
"disabled": true
},
{
"key": "ratePlanCode",
"value": "{{RatePlanCode}}",
"description": "optional",
"disabled": true
},
{
"key": "roomType",
"value": "DBL",
"disabled": true
},
{
"key": "includeClosedRates",
"value": "",
"disabled": true
},
{
"key": "includeDefaultRatePlanSet",
"value": "",
"disabled": true
},
{
"key": "initialRatePlanSet",
"value": "",
"disabled": true
},
{
"key": "ratePlanSet",
"value": "",
"disabled": true
},
{
"key": "pagePointerKey",
"value": "",
"disabled": true
},
{
"key": "bucket1Count",
"value": "",
"disabled": true
},
{
"key": "bucket2Count",
"value": "",
"disabled": true
},
{
"key": "bucket3Count",
"value": "",
"disabled": true
},
{
"key": "bucket4Count",
"value": "",
"disabled": true
},
{
"key": "bucket5Count",
"value": "",
"disabled": true
},
{
"key": "fullStayTimeSpanStartDate",
"value": "",
"disabled": true
},
{
"key": "fullStayTimeSpanEndDate",
"value": "",
"disabled": true
},
{
"key": "prevailingRate",
"value": "",
"disabled": true
},
{
"key": "rateCategory",
"value": "",
"disabled": true
},
{
"key": "rateClass",
"value": "",
"disabled": true
},
{
"key": "rateGroup",
"value": "",
"disabled": true
},
{
"key": "feature",
"value": "",
"disabled": true
},
{
"key": "reservationGuestId",
"value": "",
"disabled": true
},
{
"key": "reservationGuestIdType",
"value": "",
"disabled": true
},
{
"key": "hotelReservationId",
"value": "",
"disabled": true
},
{
"key": "hotelReservationIdType",
"value": "",
"disabled": true
},
{
"key": "ratePlanInfo",
"value": "",
"disabled": true
},
{
"key": "returnOnlyAvailableRateCodes",
"value": "",
"disabled": true
},
{
"key": "resGuaranteeInfo",
"value": "",
"disabled": true
},
{
"key": "roomTypeInfo",
"value": "",
"disabled": true
},
{
"key": "membershipIdNumber",
"value": "",
"disabled": true
},
{
"key": "smokingPreference",
"value": "",
"disabled": true
}
]
}
},
"response": [
]
}