Python
import requests url = "https://{FUSION HOST}/api/jobs/{resource}/schedule" response = requests.get(url) print(response.json())
{ "resource": { "type": "APPKIT_APP", "id": "<string>", "uri": "<string>", "canonicalName": "<string>" }, "enabled": true, "triggers": [ { "enabled": true, "type": "<string>" } ], "default": true }
Get the schedule for the specified job.
The job ID.
successful operation
Show child attributes
Was this page helpful?