Chilkat Online Tools

Objective-C / Microsoft Graph / Put item

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.

// {
//   "acl": [
//     {
//       "type": "everyone",
//       "value": "c5f19b2d-0a77-454a-9b43-abf298c3b34e",
//       "accessType": "grant"
//     }
//   ],
//   "properties": {
//     "title": "Sample item title",
//     "extension": "docx",
//     "createdBy": "John Doe",
//     "createdDateTime": "2021-04-27T11:04:00Z",
//     "iconUrl": "https://contentdepot.blob.core.windows.net/filedepot/sampleIconUrl.png",
//     "authors": [
//       "John Doe"
//     ],
//     "authors@odata.type": "Collection(String)",
//     "lastModifiedDate": "2021-04-27T11:04:00Z",
//     "url": "https://sampleItemUrl.com",
//     "containerName": "Sample container name",
//     "containerUrl": "https://sampleContainerUrl.com"
//   },
//   "content": {
//     "type": "text",
//     "value": "Empower customers and partners to be more productive by enabling them to bring content and activity information and allow external content to participate in Microsoft Search and OfficeHub experiences so that they find relevant and actionable information across all their applications."
//   }
// }

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"acl[0].type" value: @"everyone"];
[json UpdateString: @"acl[0].value" value: @"c5f19b2d-0a77-454a-9b43-abf298c3b34e"];
[json UpdateString: @"acl[0].accessType" value: @"grant"];
[json UpdateString: @"properties.title" value: @"Sample item title"];
[json UpdateString: @"properties.extension" value: @"docx"];
[json UpdateString: @"properties.createdBy" value: @"John Doe"];
[json UpdateString: @"properties.createdDateTime" value: @"2021-04-27T11:04:00Z"];
[json UpdateString: @"properties.iconUrl" value: @"https://contentdepot.blob.core.windows.net/filedepot/sampleIconUrl.png"];
[json UpdateString: @"properties.authors[0]" value: @"John Doe"];
[json UpdateString: @"properties.\"authors@odata.type\"" value: @"Collection(String)"];
[json UpdateString: @"properties.lastModifiedDate" value: @"2021-04-27T11:04:00Z"];
[json UpdateString: @"properties.url" value: @"https://sampleItemUrl.com"];
[json UpdateString: @"properties.containerName" value: @"Sample container name"];
[json UpdateString: @"properties.containerUrl" value: @"https://sampleContainerUrl.com"];
[json UpdateString: @"content.type" value: @"text"];
[json UpdateString: @"content.value" value: @"Empower customers and partners to be more productive by enabling them to bring content and activity information and allow external content to participate in Microsoft Search and OfficeHub experiences so that they find relevant and actionable information across all their applications."];

// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";
[http SetRequestHeader: @"Content-Type" value: @"application/json"];

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

CkoHttpResponse *resp = [http PTextSb: @"PUT" url: @"https://graph.microsoft.com/v1.0/external/connections/sampleConnectionId/items/sampleItemId" 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 "Content-Type: application/json"
	-d '{
    "acl": [
        {
            "type": "everyone",
            "value": "c5f19b2d-0a77-454a-9b43-abf298c3b34e",
            "accessType": "grant"
        }
    ],
    "properties": {
        "title": "Sample item title",
        "extension": "docx",
        "createdBy": "John Doe",
        "createdDateTime": "2021-04-27T11:04:00Z",
        "iconUrl": "https://contentdepot.blob.core.windows.net/filedepot/sampleIconUrl.png",
        "authors": [
            "John Doe"
        ],
        "authors@odata.type": "Collection(String)",
        "lastModifiedDate": "2021-04-27T11:04:00Z",
        "url": "https://sampleItemUrl.com",
        "containerName": "Sample container name",
        "containerUrl": "https://sampleContainerUrl.com"
    },
    "content": {
        "type": "text",
        "value": "Empower customers and partners to be more productive by enabling them to bring content and activity information and allow external content to participate in Microsoft Search and OfficeHub experiences so that they find relevant and actionable information across all their applications."
    }
}'
https://graph.microsoft.com/v1.0/external/connections/sampleConnectionId/items/sampleItemId

Postman Collection Item JSON

{
  "name": "Put item",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"acl\": [\r\n        {\r\n            \"type\": \"everyone\",\r\n            \"value\": \"c5f19b2d-0a77-454a-9b43-abf298c3b34e\",\r\n            \"accessType\": \"grant\"\r\n        }\r\n    ],\r\n    \"properties\": {\r\n        \"title\": \"Sample item title\",\r\n        \"extension\": \"docx\",\r\n        \"createdBy\": \"John Doe\",\r\n        \"createdDateTime\": \"2021-04-27T11:04:00Z\",\r\n        \"iconUrl\": \"https://contentdepot.blob.core.windows.net/filedepot/sampleIconUrl.png\",\r\n        \"authors\": [\r\n            \"John Doe\"\r\n        ],\r\n        \"authors@odata.type\": \"Collection(String)\",\r\n        \"lastModifiedDate\": \"2021-04-27T11:04:00Z\",\r\n        \"url\": \"https://sampleItemUrl.com\",\r\n        \"containerName\": \"Sample container name\",\r\n        \"containerUrl\": \"https://sampleContainerUrl.com\"\r\n    },\r\n    \"content\": {\r\n        \"type\": \"text\",\r\n        \"value\": \"Empower customers and partners to be more productive by enabling them to bring content and activity information and allow external content to participate in Microsoft Search and OfficeHub experiences so that they find relevant and actionable information across all their applications.\"\r\n    }\r\n}"
    },
    "url": {
      "raw": "https://graph.microsoft.com/v1.0/external/connections/sampleConnectionId/items/sampleItemId",
      "protocol": "https",
      "host": [
        "graph",
        "microsoft",
        "com"
      ],
      "path": [
        "v1.0",
        "external",
        "connections",
        "sampleConnectionId",
        "items",
        "sampleItemId"
      ]
    }
  },
  "response": [
  ]
}