Objective-C / Cognite API v1 / Filter transformations
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.
// {
// "filter": {
// "isPublic": true,
// "nameRegex": "voluptate irure aute",
// "queryRegex": "fugiat dolor",
// "destinationType": "dolore velit irure dolor",
// "conflictMode": "id officia labore nostrud dolor",
// "hasBlockedError": false,
// "cdfProjectName": "in Ut",
// "createdTime": {
// "min": 47433915,
// "max": 13086787
// },
// "lastUpdatedTime": {
// "min": 36390643,
// "max": -75267076
// }
// },
// "limit": -29037401,
// "cursor": "aute magna"
// }
CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateBool: @"filter.isPublic" value: YES];
[json UpdateString: @"filter.nameRegex" value: @"voluptate irure aute"];
[json UpdateString: @"filter.queryRegex" value: @"fugiat dolor"];
[json UpdateString: @"filter.destinationType" value: @"dolore velit irure dolor"];
[json UpdateString: @"filter.conflictMode" value: @"id officia labore nostrud dolor"];
[json UpdateBool: @"filter.hasBlockedError" value: NO];
[json UpdateString: @"filter.cdfProjectName" value: @"in Ut"];
[json UpdateInt: @"filter.createdTime.min" value: [NSNumber numberWithInt: 47433915]];
[json UpdateInt: @"filter.createdTime.max" value: [NSNumber numberWithInt: 13086787]];
[json UpdateInt: @"filter.lastUpdatedTime.min" value: [NSNumber numberWithInt: 36390643]];
[json UpdateInt: @"filter.lastUpdatedTime.max" value: [NSNumber numberWithInt: -75267076]];
[json UpdateInt: @"limit" value: [NSNumber numberWithInt: -29037401]];
[json UpdateString: @"cursor" value: @"aute magna"];
[http SetRequestHeader: @"content-type" value: @"application/json"];
[http SetRequestHeader: @"api-key" value: @"{{api-key}}"];
CkoHttpResponse *resp = [http PostJson3: @"https://domain.com/api/v1/projects/{{project}}/transformations/filter" contentType: @"application/json" json: json];
if (http.LastMethodSuccess == 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 '{
"filter": {
"isPublic": true,
"nameRegex": "voluptate irure aute",
"queryRegex": "fugiat dolor",
"destinationType": "dolore velit irure dolor",
"conflictMode": "id officia labore nostrud dolor",
"hasBlockedError": false,
"cdfProjectName": "in Ut",
"createdTime": {
"min": 47433915,
"max": 13086787
},
"lastUpdatedTime": {
"min": 36390643,
"max": -75267076
}
},
"limit": -29037401,
"cursor": "aute magna"
}'
https://domain.com/api/v1/projects/{{project}}/transformations/filter
Postman Collection Item JSON
{
"id": "filterTransformations",
"name": "Filter transformations",
"request": {
"url": {
"host": "{{baseUrl}}",
"path": [
"api",
"v1",
"projects",
"{{project}}",
"transformations",
"filter"
],
"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": "Filter transformations. Use nextCursor to paginate through the results.",
"body": {
"mode": "raw",
"raw": "{\n \"filter\": {\n \"isPublic\": true,\n \"nameRegex\": \"voluptate irure aute\",\n \"queryRegex\": \"fugiat dolor\",\n \"destinationType\": \"dolore velit irure dolor\",\n \"conflictMode\": \"id officia labore nostrud dolor\",\n \"hasBlockedError\": false,\n \"cdfProjectName\": \"in Ut\",\n \"createdTime\": {\n \"min\": 47433915,\n \"max\": 13086787\n },\n \"lastUpdatedTime\": {\n \"min\": 36390643,\n \"max\": -75267076\n }\n },\n \"limit\": -29037401,\n \"cursor\": \"aute magna\"\n}"
}
}
}