Chilkat Online Tools

Unicode C++ / Cognite API v1 / Run transformation by its id or externalId

Back to Collection Items

void ChilkatSample(void)
    {
    json.UpdateInt(L"id",-11177653);
    }

Curl Command

curl -X POST
	-H "api-key: {{api-key}}"
	-H "content-type: application/json"
	-d '{
    "id": -11177653
}'
https://domain.com/api/v1/projects/{{project}}/transformations/run

Postman Collection Item JSON

{
  "id": "runTransformation",
  "name": "Run transformation by its id or externalId",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "transformations",
        "run"
      ],
      "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"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"id\": -11177653\n}"
    }
  }
}