Filter transformations

Filter transformations. Use nextCursor to paginate through the results.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
Request Body schema: application/json
required
required
object (TransformationFilter)
limit
integer <int32>
cursor
string
Responses
200

Paged response with list of transformations.

400

The response for a failed request.

403

The response for a forbidden request.

post/transformations/filter
Request samples
application/json
{
  • "filter": {
    • "isPublic": true,
    • "nameRegex": "string",
    • "queryRegex": "string",
    • "destinationType": "string",
    • "conflictMode": "abort",
    • "hasBlockedError": true,
    • "cdfProjectName": "string",
    • "createdTime": {
      },
    • "lastUpdatedTime": {
      },
    • "dataSetIds": [
      ],
    • "tags": {
      }
    },
  • "limit": 0,
  • "cursor": "string"
}
Response samples
application/json
{
  • "items": [
    • {
      }
    ],
  • "nextCursor": "string"
}