Skip to main content
GET
/
connectors
/
jobs
/
{id}
Get the connector job status
import requests

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

response = requests.get(url)

print(response.text)
{
  "extra": {
    "extra": {
      "counter.other.pipeline.in": 900,
      "counter.new": 898,
      "counter.output": 898,
      "counter.other.pipeline.complete": 900,
      "datasourceId": "pokemon_zip-api-test-app",
      "counter.input": 898,
      "startTime": 1722554920412,
      "counter.stage.field-mapping::3b262367-a1ad-4872-986b-f7c01ac18580.processed": 898,
      "endTime": 1722554921383,
      "counter.stage.solr-dynamic-field-name-mapping::eac75719-84c4-4101-b605-bf386ce90790.processed": 898,
      "counter.other.pipeline.out": 900,
      "counter.stage.solr-index::f2b6427a-0560-478d-a722-1037831f83fe.processed": 898
    }
  },
  "resource": "datasource:pokemon_zip-api-test-app",
  "runId": "KtqiNJnAXN",
  "startTime": 1722554920412,
  "state": "SUCCESS",
  "time": 1722560849072,
  "error": null
}

Path Parameters

id
string
required

The datasource ID.

Response

200 - application/json

OK

extra
object
required

Additional details about the job run.

Example:
{
"extra": {
"counter.other.pipeline.in": 900,
"counter.new": 898,
"counter.output": 898,
"counter.other.pipeline.complete": 900,
"datasourceId": "pokemon_zip-api-test-app",
"counter.input": 898,
"startTime": 1722554920412,
"counter.stage.field-mapping::3b262367-a1ad-4872-986b-f7c01ac18580.processed": 898,
"endTime": 1722554921383,
"counter.stage.solr-dynamic-field-name-mapping::eac75719-84c4-4101-b605-bf386ce90790.processed": 898,
"counter.other.pipeline.out": 900,
"counter.stage.solr-index::f2b6427a-0560-478d-a722-1037831f83fe.processed": 898
}
}
resource
string
Example:

"datasource:pokemon_zip-api-test-app"

runId
string
Example:

"KtqiNJnAXN"

startTime
integer<int64>
Example:

1722554920412

state
enum<string>
Available options:
READY,
RUNNING,
PAUSED,
ABORTED,
FAILED,
SUCCESS
Example:

"SUCCESS"

time
integer<int64>
Example:

1722560849072

error
object
Example:

null