Chilkat Online Tools

PureBasic / Cognite API v1 / Update events

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; 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.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateBool(json,"items[0].update.externalId.setNull",0)
    CkJsonObject::ckUpdateBool(json,"items[0].update.dataSetId.setNull",0)
    CkJsonObject::ckUpdateBool(json,"items[0].update.startTime.setNull",1)
    CkJsonObject::ckUpdateBool(json,"items[0].update.endTime.setNull",0)
    CkJsonObject::ckUpdateString(json,"items[0].update.description.set","dolor cillum velit ullamco id")
    CkJsonObject::ckUpdateNewObject(json,"items[0].update.metadata.set")
    CkJsonObject::ckUpdateNewArray(json,"items[0].update.assetIds.add")
    CkJsonObject::ckUpdateNewArray(json,"items[0].update.assetIds.remove")
    CkJsonObject::ckUpdateBool(json,"items[0].update.source.setNull",1)
    CkJsonObject::ckUpdateBool(json,"items[0].update.type.setNull",1)
    CkJsonObject::ckUpdateString(json,"items[0].update.subtype.set","Ut Duis dolor esse")
    CkJsonObject::ckUpdateInt(json,"items[0].id",123)
    CkJsonObject::ckUpdateString(json,"items[1].update.externalId.set","aliquip sit aute")
    CkJsonObject::ckUpdateInt(json,"items[1].update.dataSetId.set",-95510276)
    CkJsonObject::ckUpdateBool(json,"items[1].update.startTime.setNull",0)
    CkJsonObject::ckUpdateBool(json,"items[1].update.endTime.setNull",0)
    CkJsonObject::ckUpdateString(json,"items[1].update.description.set","in dolore aliquip dolor proident")
    CkJsonObject::ckUpdateNewObject(json,"items[1].update.metadata.set")
    CkJsonObject::ckUpdateNewArray(json,"items[1].update.assetIds.add")
    CkJsonObject::ckUpdateNewArray(json,"items[1].update.assetIds.remove")
    CkJsonObject::ckUpdateString(json,"items[1].update.source.set","dolore nostrud")
    CkJsonObject::ckUpdateString(json,"items[1].update.type.set","ea")
    CkJsonObject::ckUpdateString(json,"items[1].update.subtype.set","aute")
    CkJsonObject::ckUpdateInt(json,"items[1].id",123)

    CkHttp::ckSetRequestHeader(http,"content-type","application/json")
    CkHttp::ckSetRequestHeader(http,"api-key","{{api-key}}")

    resp.i = CkHttp::ckPostJson3(http,"https://domain.com/api/v1/projects/{{project}}/events/update","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

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}"
    }
  }
}