Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject json;
HCkStringBuilder sbRequestBody;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "criteria": {
// "hotelId": "{{HotelId}}",
// "arrivalDate": "2021-04-06",
// "nights": 1,
// "adults": 1,
// "children": 0,
// "numberOfRooms": 1,
// "roomType": "STDD",
// "rateCode": "RACK"
// }
// }
json = CkJsonObject_Create();
CkJsonObject_UpdateString(json,"criteria.hotelId","{{HotelId}}");
CkJsonObject_UpdateString(json,"criteria.arrivalDate","2021-04-06");
CkJsonObject_UpdateInt(json,"criteria.nights",1);
CkJsonObject_UpdateInt(json,"criteria.adults",1);
CkJsonObject_UpdateInt(json,"criteria.children",0);
CkJsonObject_UpdateInt(json,"criteria.numberOfRooms",1);
CkJsonObject_UpdateString(json,"criteria.roomType","STDD");
CkJsonObject_UpdateString(json,"criteria.rateCode","RACK");
CkHttp_SetRequestHeader(http,"x-app-key","{{AppKey}}");
CkHttp_SetRequestHeader(http,"x-hotelid","{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
sbRequestBody = CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);
resp = CkHttp_PTextSb(http,"PUT","https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules/action/validate",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
}
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
-d '{
"criteria": {
"hotelId": "{{HotelId}}",
"arrivalDate": "2021-04-06",
"nights": 1,
"adults": 1,
"children": 0,
"numberOfRooms": 1,
"roomType": "STDD",
"rateCode": "RACK"
}
}'
https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules/action/validate
Postman Collection Item JSON
{
"name": "Test an upsell Rule",
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
},
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"criteria\": {\r\n \"hotelId\": \"{{HotelId}}\",\r\n \"arrivalDate\": \"2021-04-06\",\r\n \"nights\": 1,\r\n \"adults\": 1,\r\n \"children\": 0,\r\n \"numberOfRooms\": 1,\r\n \"roomType\": \"STDD\",\r\n \"rateCode\": \"RACK\"\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/config/v0/hotels/{{HotelId}}/upsellRules/action/validate",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"config",
"v0",
"hotels",
"{{HotelId}}",
"upsellRules",
"action",
"validate"
]
}
},
"response": [
]
}