Back to Collection Items
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
$oHttp = ObjCreate("Chilkat.Http")
Local $bSuccess
; Use this online tool to generate code from sample JSON: Generate Code to Create JSON
; The following JSON is sent in the request body.
; {
; "eventItems": {
; "eventItemInfo": [
; {
; "eventItem": {
; "quantity": 1,
; "externalOrder": true,
; "hotelId": "{{HotelId}}",
; "itemId": {
; "type": "ItemInventoryId",
; "id": "2586"
; }
; }
; }
; ],
; "includedInPackage": false,
; "critical": false
; },
; "eventDetails": [
; {
; "eventPrimaryInfo": {
; "eventId": {
; "type": "EventId",
; "idContext": "OPERA",
; "id": "{{EventId}}"
; },
; "hotelId": "{{HotelId}}"
; },
; "eventBlockInfo": {
; "blockIdList": [
; {
; "type": "Block",
; "id": "{{BlockId}}"
; }
; ]
; }
; }
; ]
; }
$oJson = ObjCreate("Chilkat.JsonObject")
$oJson.UpdateInt("eventItems.eventItemInfo[0].eventItem.quantity",1)
$oJson.UpdateBool("eventItems.eventItemInfo[0].eventItem.externalOrder",True)
$oJson.UpdateString("eventItems.eventItemInfo[0].eventItem.hotelId","{{HotelId}}")
$oJson.UpdateString("eventItems.eventItemInfo[0].eventItem.itemId.type","ItemInventoryId")
$oJson.UpdateString("eventItems.eventItemInfo[0].eventItem.itemId.id","2586")
$oJson.UpdateBool("eventItems.includedInPackage",False)
$oJson.UpdateBool("eventItems.critical",False)
$oJson.UpdateString("eventDetails[0].eventPrimaryInfo.eventId.type","EventId")
$oJson.UpdateString("eventDetails[0].eventPrimaryInfo.eventId.idContext","OPERA")
$oJson.UpdateString("eventDetails[0].eventPrimaryInfo.eventId.id","{{EventId}}")
$oJson.UpdateString("eventDetails[0].eventPrimaryInfo.hotelId","{{HotelId}}")
$oJson.UpdateString("eventDetails[0].eventBlockInfo.blockIdList[0].type","Block")
$oJson.UpdateString("eventDetails[0].eventBlockInfo.blockIdList[0].id","{{BlockId}}")
$oHttp.SetRequestHeader "x-app-key","{{AppKey}}"
$oHttp.SetRequestHeader "x-hotelid","{{HotelId}}"
; Adds the "Authorization: Bearer <access_token>" header.
$oHttp.AuthToken = "<access_token>"
$oSbRequestBody = ObjCreate("Chilkat.StringBuilder")
$oJson.EmitSb($oSbRequestBody)
Local $oResp = $oHttp.PTextSb("PUT","https://domain.com/evm/v0/hotels/{{HotelId}}/eventsResources",$oSbRequestBody,"utf-8","application/json",False,False)
If ($oHttp.LastMethodSuccess = False) Then
ConsoleWrite($oHttp.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
-d '{
"eventItems": {
"eventItemInfo": [
{
"eventItem": {
"quantity": 1,
"externalOrder": true,
"hotelId": "{{HotelId}}",
"itemId": {
"type": "ItemInventoryId",
"id": "2586"
}
}
}
],
"includedInPackage": false,
"critical": false
},
"eventDetails": [
{
"eventPrimaryInfo": {
"eventId": {
"type": "EventId",
"idContext": "OPERA",
"id": "{{EventId}}"
},
"hotelId": "{{HotelId}}"
},
"eventBlockInfo": {
"blockIdList": [
{
"type": "Block",
"id": "{{BlockId}}"
}
]
}
}
]
}'
https://domain.com/evm/v0/hotels/{{HotelId}}/eventsResources
Postman Collection Item JSON
{
"name": "Add event resources to the event",
"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",
"value": "{{HotelId}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"eventItems\": {\r\n \"eventItemInfo\": [\r\n {\r\n \"eventItem\": {\r\n \"quantity\": 1,\r\n \"externalOrder\": true,\r\n \"hotelId\": \"{{HotelId}}\",\r\n \"itemId\": {\r\n \"type\": \"ItemInventoryId\",\r\n \"id\": \"2586\"\r\n }\r\n }\r\n }\r\n ],\r\n \"includedInPackage\": false,\r\n \"critical\": false\r\n },\r\n \"eventDetails\": [\r\n {\r\n \"eventPrimaryInfo\": {\r\n \"eventId\": {\r\n \"type\": \"EventId\",\r\n \"idContext\": \"OPERA\",\r\n \"id\": \"{{EventId}}\"\r\n },\r\n \"hotelId\": \"{{HotelId}}\"\r\n },\r\n \"eventBlockInfo\": {\r\n \"blockIdList\": [\r\n {\r\n \"type\": \"Block\",\r\n \"id\": \"{{BlockId}}\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/evm/v0/hotels/{{HotelId}}/eventsResources",
"host": [
"{{HostName}}"
],
"path": [
"evm",
"v0",
"hotels",
"{{HotelId}}",
"eventsResources"
]
}
},
"response": [
]
}