Chilkat Online Tools

Objective-C / ORACLE Hospitality OPERA Cloud REST API Workflows / Update an event - change the event time

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <CkoHttpResponse.h>

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

// 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}}"
//       }
//     }
//   ]
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"eventDetails[0].eventPrimaryInfo.eventId.type" value: @"EventId"];
[json UpdateString: @"eventDetails[0].eventPrimaryInfo.eventId.idContext" value: @"OPERA"];
[json UpdateString: @"eventDetails[0].eventPrimaryInfo.eventId.id" value: @"{{EventId}}"];
[json UpdateString: @"eventDetails[0].eventPrimaryInfo.hotelId" value: @"{{HotelId}}"];
[json UpdateString: @"eventDetails[0].eventDetail.eventName.defaultText" value: @"Reception Event Name"];
[json UpdateString: @"eventDetails[0].eventDetail.eventType" value: @"LUNCH"];
[json UpdateString: @"eventDetails[0].eventDetail.eventTimeSpan.startDateTime" value: @"2021-06-01 13:00:00.0"];
[json UpdateString: @"eventDetails[0].eventDetail.eventTimeSpan.endDateTime" value: @"2021-06-01 18:00:00.0"];
[json UpdateString: @"eventDetails[0].eventDetail.eventStatus.status.code" value: @"INQ"];
[json UpdateString: @"eventDetails[0].eventDetail.attendees.expected" value: @"19"];
[json UpdateString: @"eventDetails[0].eventDetail.doorcard" value: @"KD Guest"];
[json UpdateBool: @"eventDetails[0].eventDetail.notMoveable" value: NO];
[json UpdateBool: @"eventDetails[0].eventDetail.loudEvent" value: NO];
[json UpdateBool: @"eventDetails[0].eventDetail.displayDoorcard" value: YES];
[json UpdateBool: @"eventDetails[0].eventDetail.includeSpaceInPackage" value: NO];
[json UpdateBool: @"eventDetails[0].processInstructions.overrideCapacity" value: NO];
[json UpdateBool: @"eventDetails[0].processInstructions.overbook" value: NO];
[json UpdateBool: @"eventDetails[0].processInstructions.overrideMaxgroups" value: NO];
[json UpdateBool: @"eventDetails[0].processInstructions.warnFunctionSpace" value: YES];
[json UpdateString: @"eventDetails[0].eventBlockInfo.blockIdList[0].type" value: @"Block"];
[json UpdateString: @"eventDetails[0].eventBlockInfo.blockIdList[0].id" value: @"{{BlockId}}"];
[json UpdateString: @"eventDetails[0].eventBlockInfo.hotelId" value: @"{{HotelId}}"];

[http SetRequestHeader: @"x-app-key" value: @"{{AppKey}}"];
[http SetRequestHeader: @"x-hotelid" value: @"{{HotelId}}"];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];

CkoHttpResponse *resp = [http PTextSb: @"PUT" url: @"https://domain.com/evm/v0/hotels/{{HotelId}}/events/{{EventId}}" textData: sbRequestBody charset: @"utf-8" contentType: @"application/json" md5: NO gzip: NO];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

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": [
  ]
}