Chilkat Online Tools

DataFlex / Cognite API v1 / Filter transformations

Back to Collection Items

Use ChilkatAx-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

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

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateBool Of hoJson "filter.isPublic" True To iSuccess
    Get ComUpdateString Of hoJson "filter.nameRegex" "voluptate irure aute" To iSuccess
    Get ComUpdateString Of hoJson "filter.queryRegex" "fugiat dolor" To iSuccess
    Get ComUpdateString Of hoJson "filter.destinationType" "dolore velit irure dolor" To iSuccess
    Get ComUpdateString Of hoJson "filter.conflictMode" "id officia labore nostrud dolor" To iSuccess
    Get ComUpdateBool Of hoJson "filter.hasBlockedError" False To iSuccess
    Get ComUpdateString Of hoJson "filter.cdfProjectName" "in Ut" To iSuccess
    Get ComUpdateInt Of hoJson "filter.createdTime.min" 47433915 To iSuccess
    Get ComUpdateInt Of hoJson "filter.createdTime.max" 13086787 To iSuccess
    Get ComUpdateInt Of hoJson "filter.lastUpdatedTime.min" 36390643 To iSuccess
    Get ComUpdateInt Of hoJson "filter.lastUpdatedTime.max" -75267076 To iSuccess
    Get ComUpdateInt Of hoJson "limit" -29037401 To iSuccess
    Get ComUpdateString Of hoJson "cursor" "aute magna" To iSuccess

    Send ComSetRequestHeader To hoHttp "content-type" "application/json"
    Send ComSetRequestHeader To hoHttp "api-key" "{{api-key}}"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://domain.com/api/v1/projects/{{project}}/transformations/filter" "application/json" vJson To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln sTemp1
    Send Destroy of hoResp


End_Procedure

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