List Data Flows
[host-url]/dt-rest/v2/projects/{projectId}/dataflows
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 thefieldsparameter./projects/{projectId}/dataflows?fields=name,dataFlowId,... - Retrieve data flows for a project by name:
Retrieves data flows for the project with the given
projectIdthat match the specifiedname. 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
projectIdthat match the specifiedname, and the response will only include the fields specified in thefieldsparameter./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
projectIdthat belong to the specifiedparentFolder. 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
projectIdthat belong to the specifiedparentFolder, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/dataflows?parentFolder=folderId&fields=name,dataFlowId,...
Request
-
projectId(required): string
ID of the project for which to retrieve data flows
-
fields: string
comma-separated list of fields to include in the response
-
folder: string
filters data flows by parent folder
-
name: string
filters data flows by name
There's no request body for this operation.
Back to TopResponse
- application/json
200 Response
array-
Array of:
object DataFlowBaseDTO
Representation of a data flow.