GET
/
api
/
svc
/
v1
/
jobs
/
{jobId}
/
runs
/
{jobRunName}
Get Job Run
curl --request GET \
  --url https://{controlPlaneURL}/api/svc/v1/jobs/{jobId}/runs/{jobRunName} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "<string>",
    "applicationName": "<string>",
    "deploymentVersion": "<string>",
    "createdAt": 123,
    "endTime": 123,
    "duration": 123,
    "command": "<string>",
    "totalRetries": 123,
    "error": "<string>",
    "status": "CREATED",
    "triggeredBy": "<string>",
    "triggeredBySubject": {
      "subjectId": "<string>",
      "subjectType": "user",
      "subjectSlug": "<string>",
      "subjectDisplayName": "<string>"
    },
    "exitCode": 123,
    "sparkUi": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string
required

Application Id of JOB

jobRunName
string
required

Job run name of the application

Response

Return JobRun details of the provided jobRunName

The response is of type object.