Chilkat Online Tools

Objective-C / ORACLE Hospitality OPERA Cloud REST API Workflows / Add notes to a block

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.

// {
//   "blocks": [
//     {
//       "blockIdList": [
//         {
//           "type": "Block",
//           "idContext": "OPERA",
//           "id": "{{BlockId}}"
//         }
//       ],
//       "comments": {
//         "commentInfo": [
//           {
//             "comment": {
//               "commentTitle": "Block note title",
//               "type": "BOOK",
//               "internal": true,
//               "hotelId": "{{HotelId}}",
//               "text": {
//                 "value": "Block notes can go here"
//               }
//             }
//           }
//         ]
//       },
//       "hotelId": "{{HotelId}}",
//       "markAsRecentlyAccessed": false
//     }
//   ]
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"blocks[0].blockIdList[0].type" value: @"Block"];
[json UpdateString: @"blocks[0].blockIdList[0].idContext" value: @"OPERA"];
[json UpdateString: @"blocks[0].blockIdList[0].id" value: @"{{BlockId}}"];
[json UpdateString: @"blocks[0].comments.commentInfo[0].comment.commentTitle" value: @"Block note title"];
[json UpdateString: @"blocks[0].comments.commentInfo[0].comment.type" value: @"BOOK"];
[json UpdateBool: @"blocks[0].comments.commentInfo[0].comment.internal" value: YES];
[json UpdateString: @"blocks[0].comments.commentInfo[0].comment.hotelId" value: @"{{HotelId}}"];
[json UpdateString: @"blocks[0].comments.commentInfo[0].comment.text.value" value: @"Block notes can go here"];
[json UpdateString: @"blocks[0].hotelId" value: @"{{HotelId}}"];
[json UpdateBool: @"blocks[0].markAsRecentlyAccessed" value: NO];

[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/blk/v0/hotels/{{HotelId}}/blocks/{{BlockId}}" 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-hotelid: {{HotelId}}"
	-H "x-app-key: {{AppKey}}"
	-d '{
    "blocks": [
        {
            "blockIdList": [
                {
                    "type": "Block",
                    "idContext": "OPERA",
                    "id": "{{BlockId}}"
                }
            ],
            "comments": {
                "commentInfo": [
                    {
                        "comment": {
                            "commentTitle": "Block note title",
                            "type": "BOOK",
                            "internal": true,
                            "hotelId": "{{HotelId}}",
                            "text": {
                                "value": "Block notes can go here"
                            }
                        }
                    }
                ]
            },
            "hotelId": "{{HotelId}}",
            "markAsRecentlyAccessed": false
        }
    ]
}'
https://domain.com/blk/v0/hotels/{{HotelId}}/blocks/{{BlockId}}

Postman Collection Item JSON

{
  "name": "Add notes to a block",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "PUT",
    "header": [
      {
        "key": "x-hotelid",
        "value": "{{HotelId}}"
      },
      {
        "key": "x-app-key",
        "value": "{{AppKey}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"blocks\": [\r\n        {\r\n            \"blockIdList\": [\r\n                {\r\n                    \"type\": \"Block\",\r\n                    \"idContext\": \"OPERA\",\r\n                    \"id\": \"{{BlockId}}\"\r\n                }\r\n            ],\r\n            \"comments\": {\r\n                \"commentInfo\": [\r\n                    {\r\n                        \"comment\": {\r\n                            \"commentTitle\": \"Block note title\",\r\n                            \"type\": \"BOOK\",\r\n                            \"internal\": true,\r\n                            \"hotelId\": \"{{HotelId}}\",\r\n                            \"text\": {\r\n                                \"value\": \"Block notes can go here\"\r\n                            }\r\n                        }\r\n                    }\r\n                ]\r\n            },\r\n            \"hotelId\": \"{{HotelId}}\",\r\n            \"markAsRecentlyAccessed\": false\r\n        }\r\n    ]\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{HostName}}/blk/v0/hotels/{{HotelId}}/blocks/{{BlockId}}",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "blk",
        "v0",
        "hotels",
        "{{HotelId}}",
        "blocks",
        "{{BlockId}}"
      ]
    }
  },
  "response": [
  ]
}