Skip to main content
GET
/
job-config
/
jobs
/
{resource}
/
schedule
Get a job schedule
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
}

Path Parameters

resource
string
required

The job ID, prefixed with the job type, as in spark:my-spark-job.

Query Parameters

context
string

The app to which a job belongs, formatted as app:APP_NAME.

Response

200 - */*

OK

JSON-formatted configuration values

resource
string
enabled
boolean
triggers
object[]
default
boolean