Objective-C / Cognite API v1 / Retrieve schedules
        
        Back to Collection Items
        #import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;
// 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": [
//     {
//       "id": 86019353
//     },
//     {
//       "id": -46517506
//     }
//   ],
//   "ignoreUnknownIds": true
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateInt: @"items[0].id" value: [NSNumber numberWithInt: 86019353]];
[json UpdateInt: @"items[1].id" value: [NSNumber numberWithInt: -46517506]];
[json UpdateBool: @"ignoreUnknownIds" value: YES];
[http SetRequestHeader: @"content-type" value: @"application/json"];
[http SetRequestHeader: @"api-key" value: @"{{api-key}}"];
CkoHttpResponse *resp = [[CkoHttpResponse alloc] init];
success = [http HttpJson: @"POST" url: @"https://domain.com/api/v1/projects/{{project}}/transformations/schedules/byids" json: json contentType: @"application/json" response: resp];
if (success == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}
NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);
        Curl Command
        curl -X POST
	-H "api-key: {{api-key}}"
	-H "content-type: application/json"
	-d '{
    "items": [
        {
            "id": 86019353
        },
        {
            "id": -46517506
        }
    ],
    "ignoreUnknownIds": true
}'
https://domain.com/api/v1/projects/{{project}}/transformations/schedules/byids
        Postman Collection Item JSON
        {
  "id": "getTransformationSchedulesByIds",
  "name": "Retrieve schedules",
  "request": {
    "url": {
      "host": "{{baseUrl}}",
      "path": [
        "api",
        "v1",
        "projects",
        "{{project}}",
        "transformations",
        "schedules",
        "byids"
      ],
      "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": "Retrieve transformation schedules by transformation IDs or external IDs.",
    "body": {
      "mode": "raw",
      "raw": "{\n    \"items\": [\n        {\n            \"id\": 86019353\n        },\n        {\n            \"id\": -46517506\n        }\n    ],\n    \"ignoreUnknownIds\": true\n}"
    }
  }
}