Retrieve Schedule

get

[host-url]/dt-rest/v2/schedules/{scheduleId}

Retrieves a schedule by ID.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

A JSON response containing a schedule.
Body ()
Root Schema : schema
Match All
Represents a job schedule with additional information.
Show Source
Example:
{
    "name":"your_schedule_name",
    "status":"ACTIVE_FOR_PERIOD",
    "designObjectType":"Data Flow",
    "designObjectId":"c589c90f-0fab-40fc-b45a-401cff663556",
    "activeEndDate":"2025-12-19T11:39:00",
    "activeFromDate":"2025-08-18T11:39:23",
    "dailyActivationTimeRange":"T11:39:23 T23:39:00",
    "excludeWeekDays":"TUESDAY,SUNDAY",
    "excludeMonthDays":"",
    "maxDuration":"2 MINUTE",
    "numberOfAttemptsAfterFailures":0,
    "recurrence":"SIMPLE 2025-03-14T17:25:00",
    "repetition":"None"
}
Nested Schema : JobScheduleBaseDTO
Type: object
Represents a job schedule with basic information.
Show Source
Nested Schema : type
Type: object
Represents a job schedule with additional information.
Show Source
Nested Schema : repetitionParams
Type: object
Complex object: RepetitionDTO
Nested Schema : variables
Type: array
Show Source
Nested Schema : items
Type: object
Complex object: ScenarioVariableDTO

401 Response

Unauthorized

404 Response

Not Found
Back to Top