Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- 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"
-- }
-- ]
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].description', 'New Rule Description'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'upsellRules[0].upsellByRoomType', 1
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].fromRoomTypeOrFromRoomClass', 'STDK'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].toRoomTypeOrToRoomClass', 'SUPK'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].startDate', '2022-03-03'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].endDate', '2023-12-31'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].rateCodes[0]', 'BARBB'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].rateCodes[1]', 'BAR'
EXEC sp_OAMethod @json, 'UpdateNewArray', @success OUT, 'upsellRules[0].marketCodes'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'upsellRules[0].upsellByOccupancyLevels', 0
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].formula', 'FlatAmountAddedToOriginalRate'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].upsellAmount', '5'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].currencyCode', 'USD'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].roundingRule', 'Down'
EXEC sp_OAMethod @json, 'UpdateNewArray', @success OUT, 'upsellRules[0].occupancyLevelsType'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'upsellRules[0].useDefaultTrxCode', 1
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].transactionCode.description', 'Room Upsell'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].transactionCode.transactionCode', '1500'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].transactionCode.hotelId', '{{HotelId}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].hotelId', '{{HotelId}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'upsellRules[0].upsellRuleCode', 'UPSELLRULECODE1'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'x-hotelid', '{{HotelId}}'
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'x-app-key', '{{AppKey}}'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
END
GO
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": [
]
}