List Schedules
[host-url]/dt-rest/v2/projects/{projectId}/schedules
fields: specifies the fields to include in the response (comma-separated)name: filters schedules by namestatus: filters schedules by statusworkflowId: filters schedules by workflow IDdataFlowId: filters schedules by dataflow ID
The following examples demonstrate the supported query patterns:
- Retrieve all schedules for a project:
Retrieves all schedules for the project with the given
projectId. All default fields for these schedules will be included in the response./projects/{projectId}/schedules - Retrieve all schedules for a project with specific fields:
Retrieves all schedules for the project with the given
projectId, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/schedules?fields=name,scheduleId,... - Retrieves all schedules for a project by name:
Retrieves schedules for the project with the given
projectIdthat match the specifiedname. All default fields for these schedules will be included in the response./projects/{projectId}/schedules?name=your_schedule_name - Retrieve schedules for a project by name with specific fields:
Retrieves schedules for the project with the given
projectIdthat match the specifiedname, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/schedules?name=your_schedule_name&fields=name,scheduleId,... - Retrieves all schedules for a project by status:
Retrieves schedules for the project with the given
projectIdthat match the specifiedstatus. All default fields for these schedules will be included in the response./projects/{projectId}/schedules?status=your_schedule_status - Retrieve schedules for a project by status with specific fields:
Retrieves schedules for the project with the given
projectIdthat match the specifiedname, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/schedules?status=your_schedule_status&fields=name,scheduleId,... - Retrieves all schedules for the workflow associated with a specific project:
Retrieves all schedules for the workflow that match the project with the given
projectIdthat match specifiedworkflowId. All default fields for these schedules will be included in the response./projects/{projectId}/schedules?workflowId=your_workflowId - Retrieves all schedules for the workflow associated with a specific project with fields:
Retrieves all schedules for the workflow that match the project with the given
projectIdthat match the specifiedworkflowId, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/schedules?workflowId=your_workflowId&fields=name,scheduleId,... - Retrieves all schedules for the dataflow associated with a specific project:
Retrieves all schedules for the dataflow that match the project with the given
projectIdthat match specifieddataflowId. All default fields for these schedules will be included in the response./projects/{projectId}/schedules?dataflowId=your_dataFlowId - Retrieves all schedules for the dataflow associated with a specific project with fields:
Retrieves all schedules for the dataflow that match the project with the given
projectIdthat match the specifieddataflowId, and the response will only include the fields specified in thefieldsparameter./projects/{projectId}/schedules?dataflowId=your_dataFlowId&fields=name,scheduleId,...
Request
-
projectId(required): string
ID of the project for which to retrieve schedules
-
dataFlowId: string
filters schedules by dataflow ID
-
fields: string
comma-separated list of fields to include in the response
-
name: string
filters schedules by name
-
status: string
filters schedules by status
-
workflowId: string
filters schedules by workflow ID
There's no request body for this operation.
Back to TopResponse
- application/json
200 Response
array-
Array of:
object JobScheduleBaseDTO
Represents a job schedule with basic information.
object