Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "criteria": {
' "hotelId": "{{HotelId}}",
' "arrivalDate": "2021-04-06",
' "nights": 1,
' "adults": 1,
' "children": 0,
' "numberOfRooms": 1,
' "roomType": "ECO",
' "rateCode": "BAR"
' }
' }
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = CreateObject("Chilkat.JsonObject")
success = json.UpdateString("criteria.hotelId","{{HotelId}}")
success = json.UpdateString("criteria.arrivalDate","2021-04-06")
success = json.UpdateInt("criteria.nights",1)
success = json.UpdateInt("criteria.adults",1)
success = json.UpdateInt("criteria.children",0)
success = json.UpdateInt("criteria.numberOfRooms",1)
success = json.UpdateString("criteria.roomType","ECO")
success = json.UpdateString("criteria.rateCode","BAR")
http.SetRequestHeader "x-app-key","{{AppKey}}"
http.SetRequestHeader "x-hotelid","{{HotelId}}"
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder")
set sbRequestBody = CreateObject("Chilkat.StringBuilder")
success = json.EmitSb(sbRequestBody)
' resp is a Chilkat.HttpResponse
Set resp = http.PTextSb("PUT","https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules/action/validate",sbRequestBody,"utf-8","application/json",0,0)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
-d '{
"criteria": {
"hotelId": "{{HotelId}}",
"arrivalDate": "2021-04-06",
"nights": 1,
"adults": 1,
"children": 0,
"numberOfRooms": 1,
"roomType": "ECO",
"rateCode": "BAR"
}
}'
https://domain.com/rsv/config/v0/hotels/{{HotelId}}/upsellRules/action/validate
Postman Collection Item JSON
{
"name": "Test an upsell rule",
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "PUT",
"header": [
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
},
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"criteria\": {\r\n \"hotelId\": \"{{HotelId}}\",\r\n \"arrivalDate\": \"2021-04-06\",\r\n \"nights\": 1,\r\n \"adults\": 1,\r\n \"children\": 0,\r\n \"numberOfRooms\": 1,\r\n \"roomType\": \"ECO\",\r\n \"rateCode\": \"BAR\"\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/config/v0/hotels/{{HotelId}}/upsellRules/action/validate",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"config",
"v0",
"hotels",
"{{HotelId}}",
"upsellRules",
"action",
"validate"
]
}
},
"response": [
]
}