Job APIs
Get Job Runs
Get all job runs of a job.
GET
/
{workspaceId}
/
projects
/
{projectName}
/
jobs
/
{jobId}
/
runs
Authorizations
x-api-key
string
headerrequiredAPI Key used to authenticate your requests. How to create one.
Path Parameters
workspaceId
string
requiredYour workspace ID. How to find it?
projectName
string
requiredYour project name. It is the name you provide when creating a project.
jobId
string
requiredYour job ID. It is the ID of the job you provide when creating it.
Response
200 - application/json
id
string
requiredThe job run ID.
jobId
string
requiredThe ID of the job.
projectId
string
requiredThe project ID of the job.
start_time
string
requiredThe timestamp when the job run started executing.
status
enum<string>
requiredThe status of the job run.
Available options:
FAILED
, COMPLETED
, PENDING
, TERMINATED
, PAUSED
summary
object | null
A summary of the job run. Contains how many payloads are pending, how many finished executing, succeeded and failed.
type
enum<string>
requiredWhether the job run was triggered manually or by the job schedule.
Available options:
MANUAL
, SCHEDULED
workspace_id
string
requiredThe workspace ID of the project of the job.