Chilkat Online Tools

TCL / Cognite API v1 / Create sessions

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

# 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": [
#     {
#       "clientId": "nulla",
#       "clientSecret": "r"
#     }
#   ]
# }

set json [new_CkJsonObject]

CkJsonObject_UpdateString $json "items[0].clientId" "nulla"
CkJsonObject_UpdateString $json "items[0].clientSecret" "r"

CkHttp_SetRequestHeader $http "content-type" "application/json"

# resp is a CkHttpResponse
set resp [CkHttp_PostJson3 $http "https://domain.com/api/v1/projects/{{project}}/sessions" "application/json" $json]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $json
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $json

Curl Command

curl -X POST
	-H "content-type: application/json"
	-d '{
    "items": [
        {
            "clientId": "nulla",
            "clientSecret": "r"
        }
    ]
}'
https://domain.com/api/v1/projects/{{project}}/sessions

Postman Collection Item JSON

{
  "name": "Create sessions",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "sessions"
      ],
      "query": [
      ],
      "variable": [
      ]
    },
    "method": "POST",
    "header": [
      {
        "key": "content-type",
        "value": "application/json"
      }
    ],
    "description": "Create sessions",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"items\": [\n        {\n            \"clientId\": \"nulla\",\n            \"clientSecret\": \"r\"\n        }\n    ]\n}"
    }
  }
}