GET
/
{env_id}
/
{flow_id}
/
{tenant}
/
jobs
curl --request GET \
  --url https://client-api.hotglue.xyz/{env_id}/{flow_id}/{tenant}/jobs \
  --header 'x-api-key: <api-key>'
[
  {
    "job_id": "lmaEbA",
    "env_id": "dev.example-env.hotglue.xyz",
    "job_name": "test_job:_V-vgdlLN",
    "tenant": "default",
    "started_by": "default",
    "flow": "l8odS2mce",
    "s3_root": "default/flows/l8odS2mce/jobs/lmaEbA",
    "start_time": "2020-12-30T18:01:01.828266+00:00",
    "state": {},
    "tap": "quickbooks:sandbox",
    "status": "ETL_FAILED",
    "message": "ETL error...",
    "last_updated": "2020-12-30T20:31:00.081282+00:00"
  }
]

Authorizations

x-api-key
string
headerrequired

Path Parameters

env_id
string
required

ID of environment

flow_id
string
required

ID of flow

tenant
string
required

ID of tenant

Query Parameters

count
integer
default: 5

Number of jobs to return (sorted chronologically)

scheduled
boolean

Query for scheduled jobs only

job_type
enum<string>

For V2 flows, define whether you fetch "read" or "write" type jobs

Available options:
read,
write
page
integer

Pagination key used to fetch additional records. Defaults to page=1

Response

200 - application/json
job_id
string
env_id
string
job_name
string
tenant
string
started_by
string
flow
string
s3_root
string
start_time
string
state
object
tap
string
status
string
message
string
last_updated
string