Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "items": [
// {
// "update": {
// "externalId": {
// "setNull": false
// },
// "dataSetId": {
// "setNull": false
// },
// "startTime": {
// "setNull": true
// },
// "endTime": {
// "setNull": false
// },
// "description": {
// "set": "dolor cillum velit ullamco id"
// },
// "metadata": {
// "set": {}
// },
// "assetIds": {
// "add": [
// ],
// "remove": [
// ]
// },
// "source": {
// "setNull": true
// },
// "type": {
// "setNull": true
// },
// "subtype": {
// "set": "Ut Duis dolor esse"
// }
// },
// "id": 4891475566776272
// },
// {
// "update": {
// "externalId": {
// "set": "aliquip sit aute"
// },
// "dataSetId": {
// "set": -95510276
// },
// "startTime": {
// "setNull": false
// },
// "endTime": {
// "setNull": false
// },
// "description": {
// "set": "in dolore aliquip dolor proident"
// },
// "metadata": {
// "set": {}
// },
// "assetIds": {
// "add": [
// ],
// "remove": [
// ]
// },
// "source": {
// "set": "dolore nostrud"
// },
// "type": {
// "set": "ea"
// },
// "subtype": {
// "set": "aute"
// }
// },
// "id": 7760910451842418
// }
// ]
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateBool(json,L"items[0].update.externalId.setNull",FALSE);
CkJsonObjectW_UpdateBool(json,L"items[0].update.dataSetId.setNull",FALSE);
CkJsonObjectW_UpdateBool(json,L"items[0].update.startTime.setNull",TRUE);
CkJsonObjectW_UpdateBool(json,L"items[0].update.endTime.setNull",FALSE);
CkJsonObjectW_UpdateString(json,L"items[0].update.description.set",L"dolor cillum velit ullamco id");
CkJsonObjectW_UpdateNewObject(json,L"items[0].update.metadata.set");
CkJsonObjectW_UpdateNewArray(json,L"items[0].update.assetIds.add");
CkJsonObjectW_UpdateNewArray(json,L"items[0].update.assetIds.remove");
CkJsonObjectW_UpdateBool(json,L"items[0].update.source.setNull",TRUE);
CkJsonObjectW_UpdateBool(json,L"items[0].update.type.setNull",TRUE);
CkJsonObjectW_UpdateString(json,L"items[0].update.subtype.set",L"Ut Duis dolor esse");
CkJsonObjectW_UpdateInt(json,L"items[0].id",123);
CkJsonObjectW_UpdateString(json,L"items[1].update.externalId.set",L"aliquip sit aute");
CkJsonObjectW_UpdateInt(json,L"items[1].update.dataSetId.set",-95510276);
CkJsonObjectW_UpdateBool(json,L"items[1].update.startTime.setNull",FALSE);
CkJsonObjectW_UpdateBool(json,L"items[1].update.endTime.setNull",FALSE);
CkJsonObjectW_UpdateString(json,L"items[1].update.description.set",L"in dolore aliquip dolor proident");
CkJsonObjectW_UpdateNewObject(json,L"items[1].update.metadata.set");
CkJsonObjectW_UpdateNewArray(json,L"items[1].update.assetIds.add");
CkJsonObjectW_UpdateNewArray(json,L"items[1].update.assetIds.remove");
CkJsonObjectW_UpdateString(json,L"items[1].update.source.set",L"dolore nostrud");
CkJsonObjectW_UpdateString(json,L"items[1].update.type.set",L"ea");
CkJsonObjectW_UpdateString(json,L"items[1].update.subtype.set",L"aute");
CkJsonObjectW_UpdateInt(json,L"items[1].id",123);
CkHttpW_SetRequestHeader(http,L"content-type",L"application/json");
CkHttpW_SetRequestHeader(http,L"api-key",L"{{api-key}}");
resp = CkHttpW_PostJson3(http,L"https://domain.com/api/v1/projects/{{project}}/events/update",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-H "api-key: {{api-key}}"
-H "content-type: application/json"
-d '{
"items": [
{
"update": {
"externalId": {
"setNull": false
},
"dataSetId": {
"setNull": false
},
"startTime": {
"setNull": true
},
"endTime": {
"setNull": false
},
"description": {
"set": "dolor cillum velit ullamco id"
},
"metadata": {
"set": {}
},
"assetIds": {
"add": [],
"remove": []
},
"source": {
"setNull": true
},
"type": {
"setNull": true
},
"subtype": {
"set": "Ut Duis dolor esse"
}
},
"id": 4891475566776272
},
{
"update": {
"externalId": {
"set": "aliquip sit aute"
},
"dataSetId": {
"set": -95510276
},
"startTime": {
"setNull": false
},
"endTime": {
"setNull": false
},
"description": {
"set": "in dolore aliquip dolor proident"
},
"metadata": {
"set": {}
},
"assetIds": {
"add": [],
"remove": []
},
"source": {
"set": "dolore nostrud"
},
"type": {
"set": "ea"
},
"subtype": {
"set": "aute"
}
},
"id": 7760910451842418
}
]
}'
https://domain.com/api/v1/projects/{{project}}/events/update
Postman Collection Item JSON
{
"id": "updateEvents",
"name": "Update events",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"events",
"update"
],
"query": [
],
"variable": [
]
},
"method": "POST",
"header": [
{
"key": "api-key",
"value": "{{api-key}}",
"description": "An admin can create API keys in the Cognite console."
},
{
"key": "content-type",
"value": "application/json"
}
],
"description": "Updates events in the same project. This operation supports partial updates; Fields omitted from queries will remain unchanged on objects.\n\nFor primitive fields (String, Long, Int), use 'set': 'value' to update value; use 'setNull': true to set that field to null.\n\nFor the Json Array field (e.g. assetIds), use 'set': [value1, value2] to update value; use 'add': [v1, v2] to add values to current list of values; use 'remove': [v1, v2] to remove these values from current list of values if exists.\n\nA maximum of 1000 events can be updated per request, and all of the event IDs must be unique.",
"body": {
"mode": "raw",
"raw": "{\n \"items\": [\n {\n \"update\": {\n \"externalId\": {\n \"setNull\": false\n },\n \"dataSetId\": {\n \"setNull\": false\n },\n \"startTime\": {\n \"setNull\": true\n },\n \"endTime\": {\n \"setNull\": false\n },\n \"description\": {\n \"set\": \"dolor cillum velit ullamco id\"\n },\n \"metadata\": {\n \"set\": {}\n },\n \"assetIds\": {\n \"add\": [],\n \"remove\": []\n },\n \"source\": {\n \"setNull\": true\n },\n \"type\": {\n \"setNull\": true\n },\n \"subtype\": {\n \"set\": \"Ut Duis dolor esse\"\n }\n },\n \"id\": 4891475566776272\n },\n {\n \"update\": {\n \"externalId\": {\n \"set\": \"aliquip sit aute\"\n },\n \"dataSetId\": {\n \"set\": -95510276\n },\n \"startTime\": {\n \"setNull\": false\n },\n \"endTime\": {\n \"setNull\": false\n },\n \"description\": {\n \"set\": \"in dolore aliquip dolor proident\"\n },\n \"metadata\": {\n \"set\": {}\n },\n \"assetIds\": {\n \"add\": [],\n \"remove\": []\n },\n \"source\": {\n \"set\": \"dolore nostrud\"\n },\n \"type\": {\n \"set\": \"ea\"\n },\n \"subtype\": {\n \"set\": \"aute\"\n }\n },\n \"id\": 7760910451842418\n }\n ]\n}"
}
}
}