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"fetchInstructions",L"Reservation");
CkJsonObjectW_UpdateString(queryParams,L"fetchInstructions",L"UpsellInfo");
CkJsonObjectW_UpdateString(queryParams,L"allowedActions",L"Upsell");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
CkHttpW_SetRequestHeader(http,L"x-hotelid",L"{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
CkHttpW_SetRequestHeader(http,L"x-app-key",L"{{AppKey}}");
resp = CkHttpW_QuickRequestParams(http,L"GET",L"https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}",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 "fetchInstructions=Reservation"
-d "fetchInstructions=UpsellInfo"
-d "allowedActions=Upsell"
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}
Postman Collection Item JSON
{
"name": "Retrieve reservation and see if an upsell offer is available",
"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}}/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}?fetchInstructions=Reservation&fetchInstructions=UpsellInfo&allowedActions=Upsell",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"v1",
"hotels",
"{{HotelId}}",
"reservations",
"{{ReservationId}}"
],
"query": [
{
"key": "fetchInstructions",
"value": "Reservation"
},
{
"key": "fetchInstructions",
"value": "GuestMemberships",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "Tickets",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "ProfileAwards",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "ScheduledActivities",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "ServiceRequests",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "ReservationAwards",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "GuestLastStay",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "RevenuesAndBalances",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "Locators",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "WebRegistrationCards",
"disabled": true
},
{
"key": "fetchInstructions",
"value": "UpsellInfo"
},
{
"key": "allowedActions",
"value": "Upsell"
}
]
},
"description": "To fetch reservation from OPERA using ID"
},
"response": [
]
}