List Data Flows
[host-url]/dt-rest/v2/dataflows
fields: specifies the fields to include in the response (comma-separated)name: filters data flows by nameparentFolder: filters data flows by parentFolder
The following examples demonstrate the supported query patterns:
- Retrieve all data flows (no filters):
Retrieves all available data flows without any name or parent folder filtering. All default fields for these data flows will be included in the response.
/dataflows - Retrieve all data flows with specific fields:
Retrieves all data flows, but the response for each data flow will only include the fields specified in the
fieldsparameter./dataflows?fields=name,dataFlowId,dateCreated,... - Filter by name only:
Retrieves all data flows that match the specified
name. All default fields for these data flows will be included in the response./dataflows?name=your_dataflow_name - Filter by name and select specific fields:
Retrieves data flows that match the given
name, and the response for these data flows will only include the fields specified in thefieldsparameter./dataflows?name=your_dataflow_name&fields=name,dataFlowId,dateCreated,... - Filter by parentFolder only:
Retrieves all data flows that match the specified
parentFolder. All default fields for these data flows will be included in the response./dataflows?parentFolder=your_parentFolder - Filter by parentFolder and select specific fields:
Retrieves data flows that match the given
parentFolder, and the response for these data flows will only include the fields specified in thefieldsparameter./dataflows?parentFolder=your_parentFolder&fields=name,dataFlowId,dateCreated,...
Request
-
fields: string
comma-separated list of fields to include in the response
-
name: string
filters data flows by name
-
parentFolder: string
filters data flows by parentFolder
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.