List Workflows
[host-url]/dt-rest/v2/projects/{projectId}/workflows
fields: specifies the fields to include in the response (comma-separated)name: filters workflows by nameparentFolder: filters workflows by parent folder
The following examples demonstrate the supported query patterns:
- Retrieve all workflows for a project:
Retrieves all workflows for the project with the given
projectId. All default fields for these workflows will be included in the response./projects/{projectId}/workflows - Retrieve all workflows for a project with specific fields:
Retrieves all workflows for the project with the given
projectId, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/workflows?fields=name,workflowId,... - Retrieve workflows for a project by name:
Retrieves workflows for the project with the given
projectIdthat match the specifiedname. All default fields for these workflows will be included in the response./projects/{projectId}/workflows?name=your_workflow_name - Retrieve workflows for a project by name with specific fields:
Retrieves workflows for the project with the given
projectIdthat match the specifiedname, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/workflows?name=your_workflow_name&fields=name,workflowId,... - Retrieve workflows for a project by parent folder:
Retrieves workflows for the project with the given
projectIdthat belong to the specifiedparentFolder. All default fields for these workflows will be included in the response./projects/{projectId}/workflows?parentFolder=your_workflow_parentFolder - Retrieve workflows for a project by parent folder with specific fields:
Retrieves workflows for the project with the given
projectIdthat belong to the specifiedparentFolder, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/workflows?parentFolder=your_workflow_parentFolder&fields=name,workflowId,...
Request
-
projectId(required): string
ID of the project for which to retrieve workflows
-
fields: string
comma-separated list of fields to include in the response
-
folder: string
filters workflows by parent folder
-
name: string
filters workflows by name
There's no request body for this operation.
Back to TopResponse
- application/json
200 Response
array-
Array of:
object WorkflowBaseDTO
JSON that represents a workflow with basic information.
object