unicodeC / Cognite API v1 / Create time series
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": [
// {
// "externalId": "Lorem sint adipisicing",
// "name": "anim exercitation amet",
// "legacyName": "dolor velit",
// "isString": false,
// "metadata": {},
// "unit": "ipsum",
// "assetId": 1144756346410214,
// "isStep": false,
// "description": "in in eiusmod quis cillum",
// "securityCategories": [
// ],
// "dataSetId": 3020326818746230
// },
// {
// "externalId": "ullamco et",
// "name": "occaecat amet s",
// "legacyName": "minim nostrud sed laboris",
// "isString": false,
// "metadata": {},
// "unit": "veni",
// "assetId": 7145761864584356,
// "isStep": false,
// "description": "adipisicing magna",
// "securityCategories": [
// ],
// "dataSetId": 5711055041423714
// }
// ]
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"items[0].externalId",L"Lorem sint adipisicing");
CkJsonObjectW_UpdateString(json,L"items[0].name",L"anim exercitation amet");
CkJsonObjectW_UpdateString(json,L"items[0].legacyName",L"dolor velit");
CkJsonObjectW_UpdateBool(json,L"items[0].isString",FALSE);
CkJsonObjectW_UpdateNewObject(json,L"items[0].metadata");
CkJsonObjectW_UpdateString(json,L"items[0].unit",L"ipsum");
CkJsonObjectW_UpdateInt(json,L"items[0].assetId",123);
CkJsonObjectW_UpdateBool(json,L"items[0].isStep",FALSE);
CkJsonObjectW_UpdateString(json,L"items[0].description",L"in in eiusmod quis cillum");
CkJsonObjectW_UpdateNewArray(json,L"items[0].securityCategories");
CkJsonObjectW_UpdateInt(json,L"items[0].dataSetId",123);
CkJsonObjectW_UpdateString(json,L"items[1].externalId",L"ullamco et");
CkJsonObjectW_UpdateString(json,L"items[1].name",L"occaecat amet s");
CkJsonObjectW_UpdateString(json,L"items[1].legacyName",L"minim nostrud sed laboris");
CkJsonObjectW_UpdateBool(json,L"items[1].isString",FALSE);
CkJsonObjectW_UpdateNewObject(json,L"items[1].metadata");
CkJsonObjectW_UpdateString(json,L"items[1].unit",L"veni");
CkJsonObjectW_UpdateInt(json,L"items[1].assetId",123);
CkJsonObjectW_UpdateBool(json,L"items[1].isStep",FALSE);
CkJsonObjectW_UpdateString(json,L"items[1].description",L"adipisicing magna");
CkJsonObjectW_UpdateNewArray(json,L"items[1].securityCategories");
CkJsonObjectW_UpdateInt(json,L"items[1].dataSetId",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}}/timeseries",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": [
{
"externalId": "Lorem sint adipisicing",
"name": "anim exercitation amet",
"legacyName": "dolor velit",
"isString": false,
"metadata": {},
"unit": "ipsum",
"assetId": 1144756346410214,
"isStep": false,
"description": "in in eiusmod quis cillum",
"securityCategories": [],
"dataSetId": 3020326818746230
},
{
"externalId": "ullamco et",
"name": "occaecat amet s",
"legacyName": "minim nostrud sed laboris",
"isString": false,
"metadata": {},
"unit": "veni",
"assetId": 7145761864584356,
"isStep": false,
"description": "adipisicing magna",
"securityCategories": [],
"dataSetId": 5711055041423714
}
]
}'
https://domain.com/api/v1/projects/{{project}}/timeseries
Postman Collection Item JSON
{
"id": "postTimeSeries",
"name": "Create time series",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"timeseries"
],
"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": "Create one or more time series.",
"body": {
"mode": "raw",
"raw": "{\n \"items\": [\n {\n \"externalId\": \"Lorem sint adipisicing\",\n \"name\": \"anim exercitation amet\",\n \"legacyName\": \"dolor velit\",\n \"isString\": false,\n \"metadata\": {},\n \"unit\": \"ipsum\",\n \"assetId\": 1144756346410214,\n \"isStep\": false,\n \"description\": \"in in eiusmod quis cillum\",\n \"securityCategories\": [],\n \"dataSetId\": 3020326818746230\n },\n {\n \"externalId\": \"ullamco et\",\n \"name\": \"occaecat amet s\",\n \"legacyName\": \"minim nostrud sed laboris\",\n \"isString\": false,\n \"metadata\": {},\n \"unit\": \"veni\",\n \"assetId\": 7145761864584356,\n \"isStep\": false,\n \"description\": \"adipisicing magna\",\n \"securityCategories\": [],\n \"dataSetId\": 5711055041423714\n }\n ]\n}"
}
}
}