Resume Schedule
Endpoint: GET /api/scheduler/schedules/{name}/resume
Resumes a paused schedule.
Path parameters
| Parameter | Description | Type | Required/ Optional |
|---|---|---|---|
| name | The name of the schedule to resume. | string | Required. |
Response
- Returns 200 OK, indicating that the schedule has been resumed.
- Returns 404 if the schedule is already running or does not exist.
Examples
Resume a schedule
Request
curl -X 'GET' \
'https://<YOUR-CLUSTER>/api/scheduler/schedules/assignPRSchedule/resume' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'
Response
Returns 200 OK, indicating that the schedule has been resumed.