Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "upsellRules": [
// {
// "description": "New upsell rule",
// "upsellByRoomType": true,
// "fromRoomTypeOrFromRoomClass": "STDQ",
// "toRoomTypeOrToRoomClass": "*",
// "startDate": "2016-07-03",
// "upsellByOccupancyLevels": false,
// "formula": "FlatAmountAddedToOriginalRate",
// "upsellAmount": "11",
// "currencyCode": "USD",
// "roundingRule": "None",
// "occupancyLevelsType": [
// ],
// "useDefaultTrxCode": true,
// "transactionCode": {
// "transactionCode": "1000",
// "trxCode": "1000"
// },
// "trxCode": {
// "transactionCode": "1000",
// "trxCode": "1000"
// },
// "hotelId": "{{HotelId}}",
// "upsellRuleCode": "NEWUPSELLRULE1"
// }
// ]
// }
CkJsonObjectW json;
json.UpdateString(L"upsellRules[0].description",L"New upsell rule");
json.UpdateBool(L"upsellRules[0].upsellByRoomType",true);
json.UpdateString(L"upsellRules[0].fromRoomTypeOrFromRoomClass",L"STDQ");
json.UpdateString(L"upsellRules[0].toRoomTypeOrToRoomClass",L"*");
json.UpdateString(L"upsellRules[0].startDate",L"2016-07-03");
json.UpdateBool(L"upsellRules[0].upsellByOccupancyLevels",false);
json.UpdateString(L"upsellRules[0].formula",L"FlatAmountAddedToOriginalRate");
json.UpdateString(L"upsellRules[0].upsellAmount",L"11");
json.UpdateString(L"upsellRules[0].currencyCode",L"USD");
json.UpdateString(L"upsellRules[0].roundingRule",L"None");
json.UpdateNewArray(L"upsellRules[0].occupancyLevelsType");
json.UpdateBool(L"upsellRules[0].useDefaultTrxCode",true);
json.UpdateString(L"upsellRules[0].transactionCode.transactionCode",L"1000");
json.UpdateString(L"upsellRules[0].transactionCode.trxCode",L"1000");
json.UpdateString(L"upsellRules[0].trxCode.transactionCode",L"1000");
json.UpdateString(L"upsellRules[0].trxCode.trxCode",L"1000");
json.UpdateString(L"upsellRules[0].hotelId",L"{{HotelId}}");
json.UpdateString(L"upsellRules[0].upsellRuleCode",L"NEWUPSELLRULE1");
http.SetRequestHeader(L"Content-Type",L"application/json");
http.SetRequestHeader(L"x-hotelid",L"{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken(L"<access_token>");
http.SetRequestHeader(L"x-app-key",L"{{AppKey}}");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
CkHttpResponseW *resp = http.PTextSb(L"PUT",L"https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules",sbRequestBody,L"utf-8",L"application/json",false,false);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
-d '{
"upsellRules": [
{
"description": "New upsell rule",
"upsellByRoomType": true,
"fromRoomTypeOrFromRoomClass": "STDQ",
"toRoomTypeOrToRoomClass": "*",
"startDate": "2016-07-03",
"upsellByOccupancyLevels": false,
"formula": "FlatAmountAddedToOriginalRate",
"upsellAmount": "11",
"currencyCode": "USD",
"roundingRule": "None",
"occupancyLevelsType": [],
"useDefaultTrxCode": true,
"transactionCode": {
"transactionCode": "1000",
"trxCode": "1000"
},
"trxCode": {
"transactionCode": "1000",
"trxCode": "1000"
},
"hotelId": "{{HotelId}}",
"upsellRuleCode": "NEWUPSELLRULE1"
}
]
}'
https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules
Postman Collection Item JSON
{
"name": "Update an upsell rule",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
},
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"upsellRules\": [\r\n {\r\n \"description\": \"New upsell rule\",\r\n \"upsellByRoomType\": true,\r\n \"fromRoomTypeOrFromRoomClass\": \"STDQ\",\r\n \"toRoomTypeOrToRoomClass\": \"*\",\r\n \"startDate\": \"2016-07-03\",\r\n \"upsellByOccupancyLevels\": false,\r\n \"formula\": \"FlatAmountAddedToOriginalRate\",\r\n \"upsellAmount\": \"11\",\r\n \"currencyCode\": \"USD\",\r\n \"roundingRule\": \"None\",\r\n \"occupancyLevelsType\": [],\r\n \"useDefaultTrxCode\": true,\r\n \"transactionCode\": {\r\n \"transactionCode\": \"1000\",\r\n \"trxCode\": \"1000\"\r\n },\r\n \"trxCode\": {\r\n \"transactionCode\": \"1000\",\r\n \"trxCode\": \"1000\"\r\n },\r\n \"hotelId\": \"{{HotelId}}\",\r\n \"upsellRuleCode\": \"NEWUPSELLRULE1\"\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/config/v0/hotels/{{HotelId}}/upsellRules",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"config",
"v0",
"hotels",
"{{HotelId}}",
"upsellRules"
]
}
},
"response": [
]
}