Chilkat Online Tools

unicodeC / Cognite API v1 / Create extraction pipelines

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": [
    //     {
    //       "dataSetId": 6090952878084188,
    //       "externalId": "est proident quis Ut",
    //       "name": "proident",
    //       "description": "quis",
    //       "rawTables": [
    //       ],
    //       "schedule": "On trigger",
    //       "contacts": [
    //       ],
    //       "metadata": {},
    //       "source": "dolore voluptate la",
    //       "documentation": "esse laborum sed laboris"
    //     },
    //     {
    //       "dataSetId": 6120166289297592,
    //       "externalId": "ut culpa do pariatur cupidatat",
    //       "name": "cupidatat ipsum",
    //       "description": "est veniam dolor irure",
    //       "rawTables": [
    //       ],
    //       "schedule": "829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355",
    //       "contacts": [
    //       ],
    //       "metadata": {},
    //       "source": "ad Duis",
    //       "documentation": "quis reprehenderit"
    //     }
    //   ]
    // }

    json = CkJsonObjectW_Create();
    CkJsonObjectW_UpdateInt(json,L"items[0].dataSetId",123);
    CkJsonObjectW_UpdateString(json,L"items[0].externalId",L"est proident quis Ut");
    CkJsonObjectW_UpdateString(json,L"items[0].name",L"proident");
    CkJsonObjectW_UpdateString(json,L"items[0].description",L"quis");
    CkJsonObjectW_UpdateNewArray(json,L"items[0].rawTables");
    CkJsonObjectW_UpdateString(json,L"items[0].schedule",L"On trigger");
    CkJsonObjectW_UpdateNewArray(json,L"items[0].contacts");
    CkJsonObjectW_UpdateNewObject(json,L"items[0].metadata");
    CkJsonObjectW_UpdateString(json,L"items[0].source",L"dolore voluptate la");
    CkJsonObjectW_UpdateString(json,L"items[0].documentation",L"esse laborum sed laboris");
    CkJsonObjectW_UpdateInt(json,L"items[1].dataSetId",123);
    CkJsonObjectW_UpdateString(json,L"items[1].externalId",L"ut culpa do pariatur cupidatat");
    CkJsonObjectW_UpdateString(json,L"items[1].name",L"cupidatat ipsum");
    CkJsonObjectW_UpdateString(json,L"items[1].description",L"est veniam dolor irure");
    CkJsonObjectW_UpdateNewArray(json,L"items[1].rawTables");
    CkJsonObjectW_UpdateString(json,L"items[1].schedule",L"829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355");
    CkJsonObjectW_UpdateNewArray(json,L"items[1].contacts");
    CkJsonObjectW_UpdateNewObject(json,L"items[1].metadata");
    CkJsonObjectW_UpdateString(json,L"items[1].source",L"ad Duis");
    CkJsonObjectW_UpdateString(json,L"items[1].documentation",L"quis reprehenderit");

    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}}/extpipes",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": [
        {
            "dataSetId": 6090952878084188,
            "externalId": "est proident quis Ut",
            "name": "proident",
            "description": "quis",
            "rawTables": [],
            "schedule": "On trigger",
            "contacts": [],
            "metadata": {},
            "source": "dolore voluptate la",
            "documentation": "esse laborum sed laboris"
        },
        {
            "dataSetId": 6120166289297592,
            "externalId": "ut culpa do pariatur cupidatat",
            "name": "cupidatat ipsum",
            "description": "est veniam dolor irure",
            "rawTables": [],
            "schedule": "829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355",
            "contacts": [],
            "metadata": {},
            "source": "ad Duis",
            "documentation": "quis reprehenderit"
        }
    ]
}'
https://domain.com/api/v1/projects/{{project}}/extpipes

Postman Collection Item JSON

{
  "id": "createExtPipes",
  "name": "Create extraction pipelines",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "extpipes"
      ],
      "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": "Creates multiple new extraction pipelines. A maximum of 1000 extraction pipelines can be created per request.",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"items\": [\n        {\n            \"dataSetId\": 6090952878084188,\n            \"externalId\": \"est proident quis Ut\",\n            \"name\": \"proident\",\n            \"description\": \"quis\",\n            \"rawTables\": [],\n            \"schedule\": \"On trigger\",\n            \"contacts\": [],\n            \"metadata\": {},\n            \"source\": \"dolore voluptate la\",\n            \"documentation\": \"esse laborum sed laboris\"\n        },\n        {\n            \"dataSetId\": 6120166289297592,\n            \"externalId\": \"ut culpa do pariatur cupidatat\",\n            \"name\": \"cupidatat ipsum\",\n            \"description\": \"est veniam dolor irure\",\n            \"rawTables\": [],\n            \"schedule\": \"829335,97665155,6988,0,1,2,50219644,344,13985954*/63 */9171156653970,43,5805075,70450,3,2805,27,88393 26748250436,0615963873,916395,181210,914594,3428,679355\",\n            \"contacts\": [],\n            \"metadata\": {},\n            \"source\": \"ad Duis\",\n            \"documentation\": \"quis reprehenderit\"\n        }\n    ]\n}"
    }
  }
}