Chilkat Online Tools

autoit / ORACLE Hospitality OPERA Cloud REST API Workflows / Add notes to the event

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_9_5_0.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.

; {
;   "eventDetails": [
;     {
;       "eventPrimaryInfo": {
;         "eventId": {
;           "type": "EventId",
;           "idContext": "OPERA",
;           "id": "{{EventId}}"
;         },
;         "hotelId": "{{HotelId}}"
;       },
;       "eventNotes": [
;         {
;           "noteCode": "EVENT",
;           "internal": true,
;           "noteTitle": "Event",
;           "comment": "Event notes can go here",
;           "sequence": "2"
;         }
;       ]
;     }
;   ]
; }

$oJson = ObjCreate("Chilkat_9_5_0.JsonObject")
$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].eventNotes[0].noteCode","EVENT")
$oJson.UpdateBool("eventDetails[0].eventNotes[0].internal",True)
$oJson.UpdateString("eventDetails[0].eventNotes[0].noteTitle","Event")
$oJson.UpdateString("eventDetails[0].eventNotes[0].comment","Event notes can go here")
$oJson.UpdateString("eventDetails[0].eventNotes[0].sequence","2")

$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_9_5_0.StringBuilder")
$oJson.EmitSb($oSbRequestBody)

Local $oResp = $oHttp.PTextSb("PUT","https://domain.com/evm/v0/hotels/{{HotelId}}/events/{{EventId}}",$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 '{
    "eventDetails": [
        {
            "eventPrimaryInfo": {
                "eventId": {
                    "type": "EventId",
                    "idContext": "OPERA",
                    "id": "{{EventId}}"
                },
                "hotelId": "{{HotelId}}"
            },
            "eventNotes": [
                {
                    "noteCode": "EVENT",
                    "internal": true,
                    "noteTitle": "Event",
                    "comment": "Event notes can go here",
                    "sequence": "2"
                }
            ]
        }
    ]
}'
https://domain.com/evm/v0/hotels/{{HotelId}}/events/{{EventId}}

Postman Collection Item JSON

{
  "name": "Add notes 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",
        "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            \"eventNotes\": [\r\n                {\r\n                    \"noteCode\": \"EVENT\",\r\n                    \"internal\": true,\r\n                    \"noteTitle\": \"Event\",\r\n                    \"comment\": \"Event notes can go here\",\r\n                    \"sequence\": \"2\"\r\n                }\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": [
  ]
}