{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
All Queued Jobs
Returns a list of all queued jobs in the system. The format of the result is JSON.
GET /api/jobmanager/queued/all
Requests a list of all queued jobs in the system. The response is a list of items in the format as described in the JSON description of a job.
Example Request
# Request # Use user:password for authorization GET /api/jobmanager/queued/all HTTP/1.1 Accept: */* Authorization: Bearer VGhpcyBpcyBqdXN0IGEgZGVtbyBhY2Nlc3MgdG9rZW4u # Response HTTP/1.1 200 OK Content-Type: application/json [ { ... } ]
Application Example
# Browser access http://127.0.0.1:9000/api/jobmanager/queued/all # Shell access using curl curl -LsH "Authorization: Bearer <access_token>" "http://127.0.0.1:9000/api/jobmanager/queued/all" # Shell access using curl using username and password curl -Lsu username:password "http://127.0.0.1:9000/api/jobmanager/queued/all"