unicodeC / Cognite API v1 / Aggregate sequences
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.
// {
// "filter": {
// "name": "officia dolor qui voluptate proident",
// "externalIdPrefix": "incididunt ipsum dolor in",
// "metadata": {},
// "assetIds": [
// 6755940932372078,
// 466388817751490
// ],
// "rootAssetIds": [
// 2996959927277534,
// 4434140000089514
// ],
// "assetSubtreeIds": [
// {
// "externalId": "ullamco irure"
// },
// {
// "externalId": "enim sint occaecat pariatur"
// }
// ],
// "createdTime": {
// "max": 21259346,
// "min": 24330159
// },
// "lastUpdatedTime": {
// "max": 20522993,
// "min": 46705874
// },
// "dataSetIds": [
// {
// "externalId": "do mollit velit eiusmod sunt"
// },
// {
// "id": 5963974930141452
// }
// ]
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"filter.name",L"officia dolor qui voluptate proident");
CkJsonObjectW_UpdateString(json,L"filter.externalIdPrefix",L"incididunt ipsum dolor in");
CkJsonObjectW_UpdateNewObject(json,L"filter.metadata");
CkJsonObjectW_UpdateInt(json,L"filter.assetIds[0]",6755940932372078);
CkJsonObjectW_UpdateInt(json,L"filter.assetIds[1]",466388817751490);
CkJsonObjectW_UpdateInt(json,L"filter.rootAssetIds[0]",2996959927277534);
CkJsonObjectW_UpdateInt(json,L"filter.rootAssetIds[1]",4434140000089514);
CkJsonObjectW_UpdateString(json,L"filter.assetSubtreeIds[0].externalId",L"ullamco irure");
CkJsonObjectW_UpdateString(json,L"filter.assetSubtreeIds[1].externalId",L"enim sint occaecat pariatur");
CkJsonObjectW_UpdateInt(json,L"filter.createdTime.max",21259346);
CkJsonObjectW_UpdateInt(json,L"filter.createdTime.min",24330159);
CkJsonObjectW_UpdateInt(json,L"filter.lastUpdatedTime.max",20522993);
CkJsonObjectW_UpdateInt(json,L"filter.lastUpdatedTime.min",46705874);
CkJsonObjectW_UpdateString(json,L"filter.dataSetIds[0].externalId",L"do mollit velit eiusmod sunt");
CkJsonObjectW_UpdateInt(json,L"filter.dataSetIds[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}}/sequences/aggregate",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 '{
"filter": {
"name": "officia dolor qui voluptate proident",
"externalIdPrefix": "incididunt ipsum dolor in",
"metadata": {},
"assetIds": [
6755940932372078,
466388817751490
],
"rootAssetIds": [
2996959927277534,
4434140000089514
],
"assetSubtreeIds": [
{
"externalId": "ullamco irure"
},
{
"externalId": "enim sint occaecat pariatur"
}
],
"createdTime": {
"max": 21259346,
"min": 24330159
},
"lastUpdatedTime": {
"max": 20522993,
"min": 46705874
},
"dataSetIds": [
{
"externalId": "do mollit velit eiusmod sunt"
},
{
"id": 5963974930141452
}
]
}
}'
https://domain.com/api/v1/projects/{{project}}/sequences/aggregate
Postman Collection Item JSON
{
"id": "aggregateSequences",
"name": "Aggregate sequences",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"sequences",
"aggregate"
],
"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": "Count the number of sequences that match the given filter",
"body": {
"mode": "raw",
"raw": "{\n \"filter\": {\n \"name\": \"officia dolor qui voluptate proident\",\n \"externalIdPrefix\": \"incididunt ipsum dolor in\",\n \"metadata\": {},\n \"assetIds\": [\n 6755940932372078,\n 466388817751490\n ],\n \"rootAssetIds\": [\n 2996959927277534,\n 4434140000089514\n ],\n \"assetSubtreeIds\": [\n {\n \"externalId\": \"ullamco irure\"\n },\n {\n \"externalId\": \"enim sint occaecat pariatur\"\n }\n ],\n \"createdTime\": {\n \"max\": 21259346,\n \"min\": 24330159\n },\n \"lastUpdatedTime\": {\n \"max\": 20522993,\n \"min\": 46705874\n },\n \"dataSetIds\": [\n {\n \"externalId\": \"do mollit velit eiusmod sunt\"\n },\n {\n \"id\": 5963974930141452\n }\n ]\n }\n}"
}
}
}