List Data Flows

get

[host-url]/dt-rest/v2/projects/{projectId}/dataflows

Retrieves a list of data flows for a specific project. This method supports various query parameters to filter and customize the response:
  • fields: specifies the fields to include in the response (comma-separated)
  • name: filters projects data flows by the data flow name.
  • parentFolder: filters the projects data flows by parent folder

The following examples demonstrate the supported filtering patterns:

  • Retrieve all data flows for a project:

    Retrieves all data flows for the project with the given projectId. All default fields for these data flows will be included in the response.

    /projects/{projectId}/dataflows

  • Retrieve all data flows for a project with specific fields:

    Retrieves all data flows for the project with the given projectId, and the response will only include the fields specified in the fields parameter.

    /projects/{projectId}/dataflows?fields=name,dataFlowId,...

  • Retrieve data flows for a project by name:

    Retrieves data flows for the project with the given projectId that match the specified name. All default fields for these data flows will be included in the response.

    /projects/{projectId}/dataflows?name=your_dataflow_name

  • Retrieve data flows for a project by name with specific fields:

    Retrieves data flows for the project with the given projectId that match the specified name, and the response will only include the fields specified in the fields parameter.

    /projects/{projectId}/dataflows?name=your_dataflow_name&fields=name,dataFlowId,...

  • Retrieve data flows for a project by parent folder:

    Retrieves data flows for the project with the given projectId that belong to the specified parentFolder. All default fields for these data flows will be included in the response.

    /projects/{projectId}/dataflows?parentFolder=folderId

  • Retrieve data flows for a project by parent folder with specific fields:

    Retrieves data flows for the project with the given projectId that belong to the specified parentFolder, and the response will only include the fields specified in the fields parameter.

    /projects/{projectId}/dataflows?parentFolder=folderId&fields=name,dataFlowId,...

Request

Path Parameters
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

a response object containing the list of data flows
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : DataFlowBaseDTO
Type: object
Representation of a data flow.
Show Source

401 Response

Unauthorized

404 Response

Not Found
Back to Top