Back to Collection Items
#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
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 Rule Description",
// "upsellByRoomType": true,
// "fromRoomTypeOrFromRoomClass": "STDK",
// "toRoomTypeOrToRoomClass": "SUPK",
// "startDate": "2022-03-03",
// "endDate": "2023-12-31",
// "rateCodes": [
// "BARBB",
// "BAR"
// ],
// "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"
// }
// ]
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"upsellRules[0].description" value: @"New Rule Description"];
[json UpdateBool: @"upsellRules[0].upsellByRoomType" value: YES];
[json UpdateString: @"upsellRules[0].fromRoomTypeOrFromRoomClass" value: @"STDK"];
[json UpdateString: @"upsellRules[0].toRoomTypeOrToRoomClass" value: @"SUPK"];
[json UpdateString: @"upsellRules[0].startDate" value: @"2022-03-03"];
[json UpdateString: @"upsellRules[0].endDate" value: @"2023-12-31"];
[json UpdateString: @"upsellRules[0].rateCodes[0]" value: @"BARBB"];
[json UpdateString: @"upsellRules[0].rateCodes[1]" value: @"BAR"];
[json UpdateNewArray: @"upsellRules[0].marketCodes"];
[json UpdateBool: @"upsellRules[0].upsellByOccupancyLevels" value: NO];
[json UpdateString: @"upsellRules[0].formula" value: @"FlatAmountAddedToOriginalRate"];
[json UpdateString: @"upsellRules[0].upsellAmount" value: @"5"];
[json UpdateString: @"upsellRules[0].currencyCode" value: @"USD"];
[json UpdateString: @"upsellRules[0].roundingRule" value: @"Down"];
[json UpdateNewArray: @"upsellRules[0].occupancyLevelsType"];
[json UpdateBool: @"upsellRules[0].useDefaultTrxCode" value: YES];
[json UpdateString: @"upsellRules[0].transactionCode.description" value: @"Room Upsell"];
[json UpdateString: @"upsellRules[0].transactionCode.transactionCode" value: @"1500"];
[json UpdateString: @"upsellRules[0].transactionCode.hotelId" value: @"{{HotelId}}"];
[json UpdateString: @"upsellRules[0].hotelId" value: @"{{HotelId}}"];
[json UpdateString: @"upsellRules[0].upsellRuleCode" value: @"UPSELLRULECODE1"];
[http SetRequestHeader: @"Content-Type" value: @"application/json"];
[http SetRequestHeader: @"x-hotelid" value: @"{{HotelId}}"];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";
[http SetRequestHeader: @"x-app-key" value: @"{{AppKey}}"];
CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == NO) {
NSLog(@"%@",http.LastErrorText);
return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
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": true,
"fromRoomTypeOrFromRoomClass": "STDK",
"toRoomTypeOrToRoomClass": "SUPK",
"startDate": "2022-03-03",
"endDate": "2023-12-31",
"rateCodes": [
"BARBB",
"BAR"
],
"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\": true,\r\n \"fromRoomTypeOrFromRoomClass\": \"STDK\",\r\n \"toRoomTypeOrToRoomClass\": \"SUPK\",\r\n \"startDate\": \"2022-03-03\",\r\n \"endDate\": \"2023-12-31\",\r\n \"rateCodes\": [\r\n \"BARBB\",\r\n \"BAR\"\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": [
]
}