Chilkat Online Tools

unicodeC / ORACLE Hospitality OPERA Cloud REST API Workflows / Create a new upsell rule

Back to Collection Items

#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>

void ChilkatSample(void)
    {
    HCkHttpW http;
    BOOL success;
    HCkJsonObjectW json;
    HCkHttpResponseW resp;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    http = CkHttpW_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.

    // {
    //   "upsellRules": [
    //     {
    //       "description": "New Rule Description",
    //       "upsellByRoomType": false,
    //       "fromRoomTypeOrFromRoomClass": "STD",
    //       "toRoomTypeOrToRoomClass": "DLX",
    //       "startDate": "2022-03-03",
    //       "endDate": "2023-12-31",
    //       "rateCodes": [
    //         "RACK"
    //       ],
    //       "marketCodes": [
    //       ],
    //       "upsellByOccupancyLevels": false,
    //       "formula": "FlatAmountAddedToOriginalRate",
    //       "upsellAmount": "5",
    //       "currencyCode": "USD",
    //       "roundingRule": "Down",
    //       "occupancyLevelsType": [
    //       ],
    //       "useDefaultTrxCode": true,
    //       "transactionCode": {
    //         "description": "Room Upsell",
    //         "transactionCode": "1500",
    //         "hotelId": "{{HotelId}}"
    //       },
    //       "hotelId": "{{HotelId}}",
    //       "upsellRuleCode": "UPSELLRULECODE1"
    //     }
    //   ]
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].description",L"New Rule Description");
    CkJsonObjectW_UpdateBool(json,L"upsellRules[0].upsellByRoomType",FALSE);
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].fromRoomTypeOrFromRoomClass",L"STD");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].toRoomTypeOrToRoomClass",L"DLX");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].startDate",L"2022-03-03");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].endDate",L"2023-12-31");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].rateCodes[0]",L"RACK");
    CkJsonObjectW_UpdateNewArray(json,L"upsellRules[0].marketCodes");
    CkJsonObjectW_UpdateBool(json,L"upsellRules[0].upsellByOccupancyLevels",FALSE);
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].formula",L"FlatAmountAddedToOriginalRate");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].upsellAmount",L"5");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].currencyCode",L"USD");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].roundingRule",L"Down");
    CkJsonObjectW_UpdateNewArray(json,L"upsellRules[0].occupancyLevelsType");
    CkJsonObjectW_UpdateBool(json,L"upsellRules[0].useDefaultTrxCode",TRUE);
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].transactionCode.description",L"Room Upsell");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].transactionCode.transactionCode",L"1500");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].transactionCode.hotelId",L"{{HotelId}}");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].hotelId",L"{{HotelId}}");
    CkJsonObjectW_UpdateString(json,L"upsellRules[0].upsellRuleCode",L"UPSELLRULECODE1");

    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_PostJson3(http,L"https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules",L"application/json",json);
    if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
        wprintf(L"%s\n",CkHttpW_lastErrorText(http));
        CkHttpW_Dispose(http);
        CkJsonObjectW_Dispose(json);
        return;
    }

    wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
    wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
    CkHttpResponseW_Dispose(resp);


    CkHttpW_Dispose(http);
    CkJsonObjectW_Dispose(json);

    }

Curl Command

curl -X POST
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "x-hotelid: {{HotelId}}"
	-H "x-app-key: {{AppKey}}"
	-d '{
    "upsellRules": [
        {
            "description": "New Rule Description",
            "upsellByRoomType": false,
            "fromRoomTypeOrFromRoomClass": "STD",
            "toRoomTypeOrToRoomClass": "DLX",
            "startDate": "2022-03-03",
            "endDate": "2023-12-31",
            "rateCodes": [
                "RACK"
            ],
            "marketCodes": [],
            "upsellByOccupancyLevels": false,
            "formula": "FlatAmountAddedToOriginalRate",
            "upsellAmount": "5",
            "currencyCode": "USD",
            "roundingRule": "Down",
            "occupancyLevelsType": [],
            "useDefaultTrxCode": true,
            "transactionCode": {
                "description": "Room Upsell",
                "transactionCode": "1500",
                "hotelId": "{{HotelId}}"
            },
            "hotelId": "{{HotelId}}",
            "upsellRuleCode": "UPSELLRULECODE1"
        }
    ]
}'
https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules

Postman Collection Item JSON

{
  "name": "Create a new upsell rule",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "POST",
    "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 Rule Description\",\r\n            \"upsellByRoomType\": false,\r\n            \"fromRoomTypeOrFromRoomClass\": \"STD\",\r\n            \"toRoomTypeOrToRoomClass\": \"DLX\",\r\n            \"startDate\": \"2022-03-03\",\r\n            \"endDate\": \"2023-12-31\",\r\n            \"rateCodes\": [\r\n                \"RACK\"\r\n            ],\r\n            \"marketCodes\": [],\r\n            \"upsellByOccupancyLevels\": false,\r\n            \"formula\": \"FlatAmountAddedToOriginalRate\",\r\n            \"upsellAmount\": \"5\",\r\n            \"currencyCode\": \"USD\",\r\n            \"roundingRule\": \"Down\",\r\n            \"occupancyLevelsType\": [],\r\n            \"useDefaultTrxCode\": true,\r\n            \"transactionCode\": {\r\n                \"description\": \"Room Upsell\",\r\n                \"transactionCode\": \"1500\",\r\n                \"hotelId\": \"{{HotelId}}\"\r\n            },\r\n            \"hotelId\": \"{{HotelId}}\",\r\n            \"upsellRuleCode\": \"UPSELLRULECODE1\"\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": [
  ]
}