{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
Job Details
Returns detailed information of a given job. The format of the result is JSON.
GET /api/jobmanager/<JobId>
Returns detailed information of a given job in the format as described in the JSON description of a job.
Example Request
# Request # Use user:password for authorization GET /api/jobmanager/1a08000qegi48j227uj7k6wa8 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/1a08000qegi48j227uj7k6wa8 # Shell access using curl curl -LsH "Authorization: Bearer <access_token>" "http://127.0.0.1:9000/api/jobmanager/1a08000qegi48j227uj7k6wa8" # Shell access using curl using username and password curl -Lsu username:password "http://127.0.0.1:9000/api/jobmanager/1a08000qegi48j227uj7k6wa8"