Python
import requests url = "https://{FUSION_HOST}/job-config/jobs/{resource}/schedule" response = requests.get(url) print(response.text)
{ "resource": "datasource:mysite-v1-web", "enabled": true, "triggers": [ { "type": "interval", "enabled": true, "interval": 1, "timeUnit": "day", "startTime": "2025-08-30T06:00:00.000Z" } ], "default": false }
Fetch the schedule for the specified job.
The job ID, prefixed with the job type, as in spark:my-spark-job.
spark:my-spark-job
The app to which a job belongs, formatted as app:APP_NAME.
app:APP_NAME
OK
JSON-formatted configuration values
Show child attributes
Was this page helpful?