Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW queryParams;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
queryParams = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(queryParams,L"includeGroup",L"true");
CkJsonObjectW_UpdateString(queryParams,L"sellSeparate",L"true");
CkJsonObjectW_UpdateString(queryParams,L"startDate",L"2022-03-16");
CkJsonObjectW_UpdateString(queryParams,L"endDate",L"2022-03-21");
CkJsonObjectW_UpdateInt(queryParams,L"adults",1);
CkJsonObjectW_UpdateInt(queryParams,L"children",0);
CkJsonObjectW_UpdateString(queryParams,L"fetchInstructions",L"Header");
CkJsonObjectW_UpdateString(queryParams,L"fetchInstructions",L"CalculatedPrice");
CkJsonObjectW_UpdateString(queryParams,L"fetchInstructions",L"Items");
CkJsonObjectW_UpdateString(queryParams,L"ticketPostingRhythm",L"true");
CkJsonObjectW_UpdateString(queryParams,L"hotelId",L"{{HotelId}}");
CkHttpW_SetRequestHeader(http,L"x-app-key",L"{{AppKey}}");
CkHttpW_SetRequestHeader(http,L"x-hotelid",L"{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://domain.com/rtp/v0/packages",queryParams);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(queryParams);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(queryParams);
}
Curl Command
curl -G -d "includeGroup=true"
-d "sellSeparate=true"
-d "startDate=2022-03-16"
-d "endDate=2022-03-21"
-d "adults=1"
-d "children=0"
-d "fetchInstructions=Header"
-d "fetchInstructions=CalculatedPrice"
-d "fetchInstructions=Items"
-d "ticketPostingRhythm=true"
-d "hotelId=%7B%7BHotelId%7D%7D"
-H "Authorization: Bearer <access_token>"
-H "x-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
https://domain.com/rtp/v0/packages
Postman Collection Item JSON
{
"name": "Search For Available Tickets",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
},
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
}
],
"url": {
"raw": "{{HostName}}/rtp/v0/packages?includeGroup=true&sellSeparate=true&startDate=2022-03-16&endDate=2022-03-21&adults=1&children=0&fetchInstructions=Header&fetchInstructions=CalculatedPrice&fetchInstructions=Items&ticketPostingRhythm=true&hotelId={{HotelId}}",
"host": [
"{{HostName}}"
],
"path": [
"rtp",
"v0",
"packages"
],
"query": [
{
"key": "includeGroup",
"value": "true"
},
{
"key": "sellSeparate",
"value": "true"
},
{
"key": "startDate",
"value": "2022-03-16"
},
{
"key": "endDate",
"value": "2022-03-21"
},
{
"key": "adults",
"value": "1"
},
{
"key": "children",
"value": "0"
},
{
"key": "fetchInstructions",
"value": "Header"
},
{
"key": "fetchInstructions",
"value": "CalculatedPrice"
},
{
"key": "fetchInstructions",
"value": "Items"
},
{
"key": "ticketPostingRhythm",
"value": "true"
},
{
"key": "hotelId",
"value": "{{HotelId}}"
}
]
},
"description": "Use this operation to search for available packages at a property. You can search by date range, to see what packages are available to add to a reservation for example."
},
"response": [
]
}