Get the job run with the given id
get
/epm/rest/v1/jobRuns/{jobRunId}
Request
Path Parameters
Back to Top
Response
Supported Media Types
- application/json
200 Response
Job returned. Loop until the job completes to retrieve the job results.
404 Response
Job not found
Examples
The following example shows how to retrieve a job run by submitting a get request on the REST resource using cURL.
cURL Command
curl --user epm_cloud_user -X GET \ https://servername.fa.us2.oraclecloud.com/epm/rest/v1/jobRuns/5a8ca1a9-ab3d-49fd-8f94-a66a895c9609
Example of Response Body
The following shows an example of the response body in JSON format.
{ "id": "5a8ca1a9-ab3d-49fd-8f94-a66a895c9609", "description": "Exporting dimension Account (9ae152c1-9d03-46b8-9206-744680c84c43) to csv.", "origin": "EXPORT_DIMENSION", "status": "COMPLETED", "created": "2018-03-30T21:41:18.222Z", "createdBy": "dd3dd761-1a0e-4aea-9256-b2252145d9a6", "lastModified": "2018-03-30T21:41:18.728Z", "lastModifiedBy": "dd3dd761-1a0e-4aea-9256-b2252145d9a6", "links": [ { "rel": "self", "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/jobRuns/5a8ca1a9-ab3d-49fd-8f94-a66a895c9609" }, { "rel": "results", "href": "https://servername.fa.us2.oraclecloud.com/epm/rest/v1/files/temp/5a8ca1a9-ab3d-49fd-8f94-a66a895c9609?fileName=dimension.csv" } ] }