List Schedules
[host-url]/dt-rest/v2/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 data flow ID
The following examples demonstrate the supported query patterns:
- Retrieve all schedules (no filters):
Retrieves all available schedules without any filtering. All default fields for these schedules will be included in the response.
/schedules - Retrieve all schedules with specific fields:
Retrieves all available schedules without any filtering, and the response will only include the fields specified in the
fieldsparameter./schedules?fields=name,scheduleId,... - Retrieve a schedule by name:
Retrieves a schedule that matches the given
name. All default fields for this schedule will be included in the response./schedules?name=your_schedule_name - Retrieve a schedule by name with specific fields:
Retrieves a schedule that matches the given
name, and the response will only include the fields specified in thefieldsparameter./schedules?name=your_schedule_name&fields=name,scheduleId,... - Retrieve schedules by status:
Retrieves all schedules that match the given
status. All default fields for these schedules will be included in the response./schedules?status=your_status - Retrieve schedules by status with specific fields:
Retrieves all schedules that match the given
status, and the response will only include the fields specified in thefieldsparameter./schedules?status=your_status&fields=name,scheduleId,... - Retrieve schedules by workflow ID:
Retrieves all schedules that are associated with the given
workflowId. All default fields for these schedules will be included in the response./schedules?workflowId=your_workflow_id - Retrieve schedules by workflow ID with specific fields:
Retrieves all schedules that are associated with the given
workflowId, and the response will only include the fields specified in thefieldsparameter./schedules?workflowId=your_workflow_id&fields=name,scheduleId,... - Retrieve schedules by data flow ID:
Retrieves all schedules that are associated with the given
dataflowId. All default fields for these schedules will be included in the response./schedules?dataFlowId=your_dataflow_id - Retrieve schedules by data flow ID with specific fields:
Retrieves all schedules that are associated with the given
dataflowId, and the response will only include the fields specified in thefieldsparameter./schedules?dataFlowId=your_dataflow_id&fields=name,scheduleId,...
Request
-
dataflowId: string
QueryParam parameter dataflowId
-
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