Job === .. code-block:: http /api/repositories/{repository}/scheduler/{jobID} .. csv-table:: :header: Parameter, Type, Purpose :widths: 20, 20, 60 :stub-columns: 1 repository, string, The name of the :doc:`repository` to access jobID, int, The ID of scheduled job Get/Post ~~~~~~~~ .. http:get:: /api/repositories/(string:repository)/scheduler/(int:jobID) :synopsis: Get status of a specific job Get the status of a specific job. If you require a subset of this data (columns), POST to this url with the :doc:`standard request ` body. .. code-block:: http GET /api/repositories/jupiter/scheduler/1 HTTP/1.1 Accept: application/json .. csv-table:: :header: Response Code, Reason :widths: 25, 75 200, Success 404, No job found matching the ID 500, Server error The response is a :doc:`standard-response`. The `columns` array contains the columns in the scheduler view (see :doc:`scheduler`). The `rows` array contains a single element with the status for the specified job. See :doc:`scheduler` for an example.