Get a job
import requests
url = "https://{FUSION HOST}/api/jobs/{resource}"
response = requests.get(url)
print(response.text){
"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.
GET
/
jobs
/
{resource}
Get a job
import requests
url = "https://{FUSION HOST}/api/jobs/{resource}"
response = requests.get(url)
print(response.text){
"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
The job ID.
Response
200 - */*
successful operation
Resource reference as a string, such as 'datasource:ratings-db'
Values include ready, running, success, aborted, or failed.
Show child attributes
Show child attributes
Was this page helpful?
⌘I