Unicode C++ / Cognite API v1 / Unschedule transformations
        
        Back to Collection Items
        
void ChilkatSample(void)
    {
    json.UpdateString(L"items[0].externalId",L"ex Lorem");    json.UpdateInt(L"items[1].id",-29764054);    json.UpdateBool(L"ignoreUnknownIds",true);    success = http.HttpJson(L"POST",L"https://domain.com/api/v1/projects/{{project}}/transformations/schedules/delete",json,L"application/json",resp);
    }
        Curl Command
        curl -X POST
	-H "api-key: {{api-key}}"
	-H "content-type: application/json"
	-d '{
    "items": [
        {
            "externalId": "ex Lorem"
        },
        {
            "id": -29764054
        }
    ],
    "ignoreUnknownIds": true
}'
https://domain.com/api/v1/projects/{{project}}/transformations/schedules/delete
        Postman Collection Item JSON
        {
  "id": "deleteTransformationSchedules",
  "name": "Unschedule transformations",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "transformations",
        "schedules",
        "delete"
      ],
      "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": "Unschedule transformations by IDs or externalIds.",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"items\": [\n        {\n            \"externalId\": \"ex Lorem\"\n        },\n        {\n            \"id\": -29764054\n        }\n    ],\n    \"ignoreUnknownIds\": true\n}"
    }
  }
}