Python
import requests url = "https://{FUSION HOST}/api/jobs/{resource}/history" response = requests.get(url) print(response.json())
[ { "resource": { "type": "APPKIT_APP", "id": "<string>", "uri": "<string>", "canonicalName": "<string>" }, "runId": "<string>", "startTime": "2023-11-07T05:31:56Z", "endTime": "2023-11-07T05:31:56Z", "status": "<string>", "error": {}, "extra": {}, "startedBy": "<string>" } ]
Get the run history for the specified job.
The job ID.
Return first N history items.
successful operation
Show child attributes
Values include ready, running, success, aborted, or failed.
ready
running
success
aborted
failed
Was this page helpful?