Skip to main content

getJobStatus

The getJobStatus function retrieves the latest status of a job using the provided tenantId, flowId, and jobRoot. See the job status API docs for full details.

Parameters:

  • tenantId: string
    • A string identifier for the tenant.
  • flowId: string
    • A string identifier for the flow.
  • jobRoot: string
    • A string identifier for the job root.

Example:

const jobStatus = getJobStatus('exampleTenantId', 'exampleFlowId', 'exampleJobRoot');
console.log(jobStatus);
I