Skip to main content
GET
/
jobs
/
{resource}
Get a job
import requests

url = "https://{FUSION HOST}/api/jobs/{resource}"

response = requests.get(url)

print(response.text)
{
  "resource": "<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"
}

Documentation Index

Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

resource
string
required

The job ID.

Response

200 - */*

successful operation

resource

Resource reference as a string, such as 'datasource:ratings-db'

enabled
boolean
read-only
startedBy
string
read-only
status
string
read-only

Values include ready, running, success, aborted, or failed.

extra
object
read-only
lastStartTime
string<date-time>
read-only
lastEndTime
string<date-time>
read-only
nextStartTime
string<date-time>
read-only