Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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": false,
// "fromRoomTypeOrFromRoomClass": "STDQ",
// "toRoomTypeOrToRoomClass": "*",
// "startDate": "2021-07-03",
// "upsellByOccupancyLevels": false,
// "formula": "FlatAmountAddedToOriginalRate",
// "upsellAmount": "11",
// "currencyCode": "USD",
// "roundingRule": "None",
// "occupancyLevelsType": [
// ],
// "useDefaultTrxCode": true,
// "transactionCode": {
// "description": "Room Upsell",
// "transactionCode": "1500",
// "hotelId": "{{HotelId}}"
// },
// "hotelId": "{{HotelId}}",
// "upsellRuleCode": "NEWUPSELLRULE1"
// }
// ]
// }
let json = CkoJsonObject()!
json.update("upsellRules[0].description", value: "New upsell rule")
json.updateBool("upsellRules[0].upsellByRoomType", value: false)
json.update("upsellRules[0].fromRoomTypeOrFromRoomClass", value: "STDQ")
json.update("upsellRules[0].toRoomTypeOrToRoomClass", value: "*")
json.update("upsellRules[0].startDate", value: "2021-07-03")
json.updateBool("upsellRules[0].upsellByOccupancyLevels", value: false)
json.update("upsellRules[0].formula", value: "FlatAmountAddedToOriginalRate")
json.update("upsellRules[0].upsellAmount", value: "11")
json.update("upsellRules[0].currencyCode", value: "USD")
json.update("upsellRules[0].roundingRule", value: "None")
json.updateNewArray("upsellRules[0].occupancyLevelsType")
json.updateBool("upsellRules[0].useDefaultTrxCode", value: true)
json.update("upsellRules[0].transactionCode.description", value: "Room Upsell")
json.update("upsellRules[0].transactionCode.transactionCode", value: "1500")
json.update("upsellRules[0].transactionCode.hotelId", value: "{{HotelId}}")
json.update("upsellRules[0].hotelId", value: "{{HotelId}}")
json.update("upsellRules[0].upsellRuleCode", value: "NEWUPSELLRULE1")
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}}")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("PUT", url: "https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
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": false,
"fromRoomTypeOrFromRoomClass": "STDQ",
"toRoomTypeOrToRoomClass": "*",
"startDate": "2021-07-03",
"upsellByOccupancyLevels": false,
"formula": "FlatAmountAddedToOriginalRate",
"upsellAmount": "11",
"currencyCode": "USD",
"roundingRule": "None",
"occupancyLevelsType": [],
"useDefaultTrxCode": true,
"transactionCode": {
"description": "Room Upsell",
"transactionCode": "1500",
"hotelId": "{{HotelId}}"
},
"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\": false,\r\n \"fromRoomTypeOrFromRoomClass\": \"STDQ\",\r\n \"toRoomTypeOrToRoomClass\": \"*\",\r\n \"startDate\": \"2021-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 \"description\": \"Room Upsell\",\r\n \"transactionCode\": \"1500\",\r\n \"hotelId\": \"{{HotelId}}\"\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": [
]
}