GET
/
api
/
v1
/
data-quality
/
batch
/
{batchJobId}
const response = await api.quality.getBatchJobStatus();
{
  "batchJobId": "123e4567-e89b-12d3-a456-426614174000",
  "status": "completed",
  "results": {
    "items": [],
    "nextCursor": null
  }
}

Authorizations

X-Aftercare-Key
string
header
required

API key for authentication

Path Parameters

batchJobId
string
required

ID of the batch job to check

Response

200
application/json
Batch job status retrieved successfully
batchJobId
string
required

Unique identifier for the batch processing job

status
enum<string>
required

Status values for batch processing jobs

Available options:
queued,
processing,
completed,
failed
results
object