Chilkat Online Tools

VBScript / Cognite API v1 / Filter transformations

Back to Collection Items

Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
Set outFile = fso.CreateTextFile("output.txt", True)

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

set http = CreateObject("Chilkat_9_5_0.Http")

' 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"
' }

set json = CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateBool("filter.isPublic",1)
success = json.UpdateString("filter.nameRegex","voluptate irure aute")
success = json.UpdateString("filter.queryRegex","fugiat dolor")
success = json.UpdateString("filter.destinationType","dolore velit irure dolor")
success = json.UpdateString("filter.conflictMode","id officia labore nostrud dolor")
success = json.UpdateBool("filter.hasBlockedError",0)
success = json.UpdateString("filter.cdfProjectName","in Ut")
success = json.UpdateInt("filter.createdTime.min",47433915)
success = json.UpdateInt("filter.createdTime.max",13086787)
success = json.UpdateInt("filter.lastUpdatedTime.min",36390643)
success = json.UpdateInt("filter.lastUpdatedTime.max",-75267076)
success = json.UpdateInt("limit",-29037401)
success = json.UpdateString("cursor","aute magna")

http.SetRequestHeader "content-type","application/json"
http.SetRequestHeader "api-key","{{api-key}}"

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostJson3("https://domain.com/api/v1/projects/{{project}}/transformations/filter","application/json",json)
If (http.LastMethodSuccess = 0) Then
    outFile.WriteLine(http.LastErrorText)
    WScript.Quit
End If

outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)


outFile.Close

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}"
    }
  }
}