Job¶
/api/repositories/{repository}/scheduler/{jobID}
| Parameter | Type | Purpose |
|---|---|---|
| repository | string | The name of the Repository to access |
| jobID | int | The ID of scheduled job |
Get/Post¶
-
GET/api/repositories/(string: repository)/scheduler/(int: jobID)¶ Get the status of a specific job. If you require a subset of this data (columns), POST to this url with the standard request body.
GET /api/repositories/jupiter/scheduler/1 HTTP/1.1
Accept: application/json
| Response Code | Reason |
|---|---|
| 200 | Success |
| 404 | No job found matching the ID |
| 500 | Server error |
The response is a Standard Response.
The columns array contains the columns in the scheduler view (see Scheduler).
The rows array contains a single element with the status for the specified job. See Scheduler for an example.