{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
Queued Jobs
Returns a list of queued jobs created by the user. The format of the result is JSON.
GET /api/jobmanager/queued
Requests a list of queued jobs created by the user. 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 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 # Shell access using curl curl -LsH "Authorization: Bearer <access_token>" "http://127.0.0.1:9000/api/jobmanager/queued" # Shell access using curl using username and password curl -Lsu username:password "http://127.0.0.1:9000/api/jobmanager/queued"