GET /scheduled_jobs (deprecated)

Prior to deprecation, this endpoint retrieved information about scheduled jobs.

This endpoint is deprecated. Instead, use GET /scheduled_jobs/environment_jobs and GET /scheduled_jobs/environment_jobs/<job-id>. Tools using this deprecated endpoint must be upgraded to use the new endpoints.

While you can manually re-enable this endpoint, this is not recommended because this endpoint only returns an empty array. If you need to re-enable this endpoint, insert the following code in orchestrator.conf:

{
  orchestrator: {
    scheduled-jobs-v1-api: true;
  }
}

This also re-enables DELETE /scheduled_jobs/<job-id> (deprecated).

Request format

Prior to deprecation, when Forming orchestrator API requests to this endpoint, you could append parameters to the end of the URI path, such as:

https://orchestrator.example.com:8143/orchestrator/v1/scheduled_jobs?limit=20&type=task
This endpoint accepted the same parameters as GET /scheduled_jobs/environment_jobs.

Response format

Because this endpoint is deprecated, the response is always a JSON object containing an empty items array.

 {
    "items": [ ]
  }