Chilkat Online Tools

DataFlex / Cognite API v1 / Create events

Back to Collection Items

Use ChilkatAx-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    String sTemp1
    Integer iTemp1

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // 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": "incididunt cillum adipisicing",
    //       "dataSetId": 423131483236284,
    //       "startTime": 44041889,
    //       "endTime": 96620943,
    //       "type": "repr",
    //       "subtype": "in qui nisi amet adipisicing",
    //       "description": "occaecat labore aute aliquip culpa",
    //       "metadata": {},
    //       "assetIds": [
    //         4718222394395170,
    //         910139302320326
    //       ],
    //       "source": "tempor amet"
    //     },
    //     {
    //       "externalId": "eiusmod non occaecat Lorem veniam",
    //       "dataSetId": 1722008537542636,
    //       "startTime": 25642627,
    //       "endTime": 13905808,
    //       "type": "reprehenderit ut voluptate ea in",
    //       "subtype": "ut mollit irure cupidatat nulla",
    //       "description": "quis culpa dolore",
    //       "metadata": {},
    //       "assetIds": [
    //         3955311648854054,
    //         7221931367126430
    //       ],
    //       "source": "consectetur"
    //     }
    //   ]
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "items[0].externalId" "incididunt cillum adipisicing" To iSuccess
    Get ComUpdateInt Of hoJson "items[0].dataSetId" 123 To iSuccess
    Get ComUpdateInt Of hoJson "items[0].startTime" 44041889 To iSuccess
    Get ComUpdateInt Of hoJson "items[0].endTime" 96620943 To iSuccess
    Get ComUpdateString Of hoJson "items[0].type" "repr" To iSuccess
    Get ComUpdateString Of hoJson "items[0].subtype" "in qui nisi amet adipisicing" To iSuccess
    Get ComUpdateString Of hoJson "items[0].description" "occaecat labore aute aliquip culpa" To iSuccess
    Get ComUpdateNewObject Of hoJson "items[0].metadata" To iSuccess
    Get ComUpdateInt Of hoJson "items[0].assetIds[0]" 4718222394395170 To iSuccess
    Get ComUpdateInt Of hoJson "items[0].assetIds[1]" 910139302320326 To iSuccess
    Get ComUpdateString Of hoJson "items[0].source" "tempor amet" To iSuccess
    Get ComUpdateString Of hoJson "items[1].externalId" "eiusmod non occaecat Lorem veniam" To iSuccess
    Get ComUpdateInt Of hoJson "items[1].dataSetId" 123 To iSuccess
    Get ComUpdateInt Of hoJson "items[1].startTime" 25642627 To iSuccess
    Get ComUpdateInt Of hoJson "items[1].endTime" 13905808 To iSuccess
    Get ComUpdateString Of hoJson "items[1].type" "reprehenderit ut voluptate ea in" To iSuccess
    Get ComUpdateString Of hoJson "items[1].subtype" "ut mollit irure cupidatat nulla" To iSuccess
    Get ComUpdateString Of hoJson "items[1].description" "quis culpa dolore" To iSuccess
    Get ComUpdateNewObject Of hoJson "items[1].metadata" To iSuccess
    Get ComUpdateInt Of hoJson "items[1].assetIds[0]" 3955311648854054 To iSuccess
    Get ComUpdateInt Of hoJson "items[1].assetIds[1]" 7221931367126430 To iSuccess
    Get ComUpdateString Of hoJson "items[1].source" "consectetur" To iSuccess

    Send ComSetRequestHeader To hoHttp "content-type" "application/json"
    Send ComSetRequestHeader To hoHttp "api-key" "{{api-key}}"

    Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
    If (Not(IsComObjectCreated(hoResp))) Begin
        Send CreateComObject of hoResp
    End
    Get pvComObject of hoJson to vJson
    Get pvComObject of hoResp to vResp
    Get ComHttpJson Of hoHttp "POST" "https://domain.com/api/v1/projects/{{project}}/events" vJson "application/json" vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln sTemp1


End_Procedure

Curl Command

curl -X POST
	-H "api-key: {{api-key}}"
	-H "content-type: application/json"
	-d '{
    "items": [
        {
            "externalId": "incididunt cillum adipisicing",
            "dataSetId": 423131483236284,
            "startTime": 44041889,
            "endTime": 96620943,
            "type": "repr",
            "subtype": "in qui nisi amet adipisicing",
            "description": "occaecat labore aute aliquip culpa",
            "metadata": {},
            "assetIds": [
                4718222394395170,
                910139302320326
            ],
            "source": "tempor amet"
        },
        {
            "externalId": "eiusmod non occaecat Lorem veniam",
            "dataSetId": 1722008537542636,
            "startTime": 25642627,
            "endTime": 13905808,
            "type": "reprehenderit ut voluptate ea in",
            "subtype": "ut mollit irure cupidatat nulla",
            "description": "quis culpa dolore",
            "metadata": {},
            "assetIds": [
                3955311648854054,
                7221931367126430
            ],
            "source": "consectetur"
        }
    ]
}'
https://domain.com/api/v1/projects/{{project}}/events

Postman Collection Item JSON

{
  "id": "createEvents",
  "name": "Create events",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "events"
      ],
      "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 event objects in the same project. It is possible to post a maximum of 1000 events per request.",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"items\": [\n        {\n            \"externalId\": \"incididunt cillum adipisicing\",\n            \"dataSetId\": 423131483236284,\n            \"startTime\": 44041889,\n            \"endTime\": 96620943,\n            \"type\": \"repr\",\n            \"subtype\": \"in qui nisi amet adipisicing\",\n            \"description\": \"occaecat labore aute aliquip culpa\",\n            \"metadata\": {},\n            \"assetIds\": [\n                4718222394395170,\n                910139302320326\n            ],\n            \"source\": \"tempor amet\"\n        },\n        {\n            \"externalId\": \"eiusmod non occaecat Lorem veniam\",\n            \"dataSetId\": 1722008537542636,\n            \"startTime\": 25642627,\n            \"endTime\": 13905808,\n            \"type\": \"reprehenderit ut voluptate ea in\",\n            \"subtype\": \"ut mollit irure cupidatat nulla\",\n            \"description\": \"quis culpa dolore\",\n            \"metadata\": {},\n            \"assetIds\": [\n                3955311648854054,\n                7221931367126430\n            ],\n            \"source\": \"consectetur\"\n        }\n    ]\n}"
    }
  }
}