Skip to main content
GET
/
jobs
/
{resource}
Get a job
import requests

url = "https://{FUSION HOST}/api/jobs/{resource}"

response = requests.get(url)

print(response.json())
{
  "resource": "<string>",
  "enabled": true,
  "startedBy": "<string>",
  "status": "<string>",
  "extra": {},
  "lastStartTime": "2023-11-07T05:31:56Z",
  "lastEndTime": "2023-11-07T05:31:56Z",
  "nextStartTime": "2023-11-07T05:31:56Z"
}

Path Parameters

resource
string
required

The job ID.

Response

200 - */*

successful operation

resource

Resource reference as a string, such as 'datasource:ratings-db'

enabled
boolean
startedBy
string
status
string

Values include ready, running, success, aborted, or failed.

extra
object
lastStartTime
string<date-time>
lastEndTime
string<date-time>
nextStartTime
string<date-time>