curl --request GET \
--url https://{FUSION HOST}/api/jobs
[
{
"resource": {
"type": "APPKIT_APP",
"id": "<string>",
"uri": "<string>",
"canonicalName": "<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"
}
]
Fetch the list of existing jobs.
curl --request GET \
--url https://{FUSION HOST}/api/jobs
[
{
"resource": {
"type": "APPKIT_APP",
"id": "<string>",
"uri": "<string>",
"canonicalName": "<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"
}
]
Filter jobs by status, one of: ready
, running
, success
, aborted
, or failed
.
Filter jobs by whether they are enabled (true
) or disabled (false
).
Filter jobs by type, one of: task
, spark
, or datasource
.
successful operation
The response is of type object[]
.
Was this page helpful?