Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_SbRequestBody
oleobject loo_Resp
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "eventDetails": [
// {
// "eventPrimaryInfo": {
// "eventId": {
// "type": "EventId",
// "idContext": "OPERA",
// "id": "{{EventId}}"
// },
// "hotelId": "{{HotelId}}"
// },
// "eventDetail": {
// "eventName": {
// "defaultText": "Reception Event Name"
// },
// "eventType": "LUNCH",
// "eventTimeSpan": {
// "startDateTime": "2021-06-01 13:00:00.0",
// "endDateTime": "2021-06-01 18:00:00.0"
// },
// "eventStatus": {
// "status": {
// "code": "INQ"
// }
// },
// "attendees": {
// "expected": "19"
// },
// "doorcard": "KD Guest",
// "notMoveable": false,
// "loudEvent": false,
// "displayDoorcard": true,
// "includeSpaceInPackage": false
// },
// "processInstructions": {
// "overrideCapacity": false,
// "overbook": false,
// "overrideMaxgroups": false,
// "warnFunctionSpace": true
// },
// "eventBlockInfo": {
// "blockIdList": [
// {
// "type": "Block",
// "id": "{{BlockId}}"
// }
// ],
// "hotelId": "{{HotelId}}"
// }
// }
// ]
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("eventDetails[0].eventPrimaryInfo.eventId.type","EventId")
loo_Json.UpdateString("eventDetails[0].eventPrimaryInfo.eventId.idContext","OPERA")
loo_Json.UpdateString("eventDetails[0].eventPrimaryInfo.eventId.id","{{EventId}}")
loo_Json.UpdateString("eventDetails[0].eventPrimaryInfo.hotelId","{{HotelId}}")
loo_Json.UpdateString("eventDetails[0].eventDetail.eventName.defaultText","Reception Event Name")
loo_Json.UpdateString("eventDetails[0].eventDetail.eventType","LUNCH")
loo_Json.UpdateString("eventDetails[0].eventDetail.eventTimeSpan.startDateTime","2021-06-01 13:00:00.0")
loo_Json.UpdateString("eventDetails[0].eventDetail.eventTimeSpan.endDateTime","2021-06-01 18:00:00.0")
loo_Json.UpdateString("eventDetails[0].eventDetail.eventStatus.status.code","INQ")
loo_Json.UpdateString("eventDetails[0].eventDetail.attendees.expected","19")
loo_Json.UpdateString("eventDetails[0].eventDetail.doorcard","KD Guest")
loo_Json.UpdateBool("eventDetails[0].eventDetail.notMoveable",0)
loo_Json.UpdateBool("eventDetails[0].eventDetail.loudEvent",0)
loo_Json.UpdateBool("eventDetails[0].eventDetail.displayDoorcard",1)
loo_Json.UpdateBool("eventDetails[0].eventDetail.includeSpaceInPackage",0)
loo_Json.UpdateBool("eventDetails[0].processInstructions.overrideCapacity",0)
loo_Json.UpdateBool("eventDetails[0].processInstructions.overbook",0)
loo_Json.UpdateBool("eventDetails[0].processInstructions.overrideMaxgroups",0)
loo_Json.UpdateBool("eventDetails[0].processInstructions.warnFunctionSpace",1)
loo_Json.UpdateString("eventDetails[0].eventBlockInfo.blockIdList[0].type","Block")
loo_Json.UpdateString("eventDetails[0].eventBlockInfo.blockIdList[0].id","{{BlockId}}")
loo_Json.UpdateString("eventDetails[0].eventBlockInfo.hotelId","{{HotelId}}")
loo_Http.SetRequestHeader("x-app-key","{{AppKey}}")
loo_Http.SetRequestHeader("x-hotelid","{{HotelId}}")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_SbRequestBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Json.EmitSb(loo_SbRequestBody)
loo_Resp = loo_Http.PTextSb("PUT","https://domain.com/evm/v0/hotels/{{HotelId}}/events/{{EventId}}",loo_SbRequestBody,"utf-8","application/json",0,0)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
return
end if
Write-Debug string(loo_Resp.StatusCode)
Write-Debug loo_Resp.BodyStr
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbRequestBody
Curl Command
curl -X PUT
-H "Authorization: Bearer <access_token>"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
-d '{
"eventDetails": [
{
"eventPrimaryInfo": {
"eventId": {
"type": "EventId",
"idContext": "OPERA",
"id": "{{EventId}}"
},
"hotelId": "{{HotelId}}"
},
"eventDetail": {
"eventName": {
"defaultText": "Reception Event Name"
},
"eventType": "LUNCH",
"eventTimeSpan": {
"startDateTime": "2021-06-01 13:00:00.0",
"endDateTime": "2021-06-01 18:00:00.0"
},
"eventStatus": {
"status": {
"code": "INQ"
}
},
"attendees": {
"expected": "19"
},
"doorcard": "KD Guest",
"notMoveable": false,
"loudEvent": false,
"displayDoorcard": true,
"includeSpaceInPackage": false
},
"processInstructions": {
"overrideCapacity": false,
"overbook": false,
"overrideMaxgroups": false,
"warnFunctionSpace": true
},
"eventBlockInfo": {
"blockIdList": [
{
"type": "Block",
"id": "{{BlockId}}"
}
],
"hotelId": "{{HotelId}}"
}
}
]
}'
https://domain.com/evm/v0/hotels/{{HotelId}}/events/{{EventId}}
Postman Collection Item JSON
{
"name": "Update an event - change the event time",
"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 \"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 \"eventDetail\": {\r\n \"eventName\": {\r\n \"defaultText\": \"Reception Event Name\"\r\n },\r\n \"eventType\": \"LUNCH\",\r\n \"eventTimeSpan\": {\r\n \"startDateTime\": \"2021-06-01 13:00:00.0\",\r\n \"endDateTime\": \"2021-06-01 18:00:00.0\"\r\n },\r\n \"eventStatus\": {\r\n \"status\": {\r\n \"code\": \"INQ\"\r\n }\r\n },\r\n \"attendees\": {\r\n \"expected\": \"19\"\r\n },\r\n \"doorcard\": \"KD Guest\",\r\n \"notMoveable\": false,\r\n \"loudEvent\": false,\r\n \"displayDoorcard\": true,\r\n \"includeSpaceInPackage\": false\r\n },\r\n \"processInstructions\": {\r\n \"overrideCapacity\": false,\r\n \"overbook\": false,\r\n \"overrideMaxgroups\": false,\r\n \"warnFunctionSpace\": true\r\n },\r\n \"eventBlockInfo\": {\r\n \"blockIdList\": [\r\n {\r\n \"type\": \"Block\",\r\n \"id\": \"{{BlockId}}\"\r\n }\r\n ],\r\n \"hotelId\": \"{{HotelId}}\"\r\n }\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/evm/v0/hotels/{{HotelId}}/events/{{EventId}}",
"host": [
"{{HostName}}"
],
"path": [
"evm",
"v0",
"hotels",
"{{HotelId}}",
"events",
"{{EventId}}"
]
}
},
"response": [
]
}