Python
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" }
Get the status and configuration for the specified job.
The job ID.
successful operation
Resource reference as a string, such as 'datasource:ratings-db'
Values include ready, running, success, aborted, or failed.
ready
running
success
aborted
failed
Show child attributes
Was this page helpful?