v1

latestOpenAPI 3.0.0Apache 2.0 License2026-07-1438244196.2 KB

Returns the status, metrics, and errors (if there are any) that are associated with a job.

get/idmappingworkflows/{workflowName}/jobs/{jobId}

Path parameters

workflowNamestring required

The name of the workflow.

jobIdstring required

The ID of the job.

Response

Success

jobIdstring required

The ID of the job.

status'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'QUEUED' required

The current status of the job.

startTimestring date-time required

The time at which the job was started.

endTimestring date-time

The time at which the job has finished.

jobType'BATCH' | 'INCREMENTAL' | 'DELETE_ONLY'
<p> The job type of the ID mapping job.</p> <p>A value of <code>INCREMENTAL</code> indicates that only new or changed data was processed since the last job run. This is the default job type if the workflow was created with an <code>incrementalRunConfig</code>.</p> <p>A value of <code>BATCH</code> indicates that all data was processed from the input source, regardless of previous job runs. This is the default job type if the workflow wasn't created with an <code>incrementalRunConfig</code>.</p> <p>A value of <code>DELETE_ONLY</code> indicates that only deletion requests from <code>BatchDeleteUniqueIds</code> were processed.</p>