Get Data Quality Batch Job Status
Retrieves the current status and results of a batch evaluation job
const response = await api.quality.getBatchJobStatus();
{
"batchJobId": "123e4567-e89b-12d3-a456-426614174000",
"status": "completed",
"results": {
"items": [],
"nextCursor": null
}
}
Authorizations
API key for authentication
Path Parameters
ID of the batch job to check
Response
Unique identifier for the batch processing job
Status values for batch processing jobs
queued
, processing
, completed
, failed
Number of quality issues detected
x >= 0
A score between 0 and 100 that represents the overall quality of the survey response.
The score is an average of the quality scores across all survey entries.
The lower the score, the greater the likelihood and severity of data quality issues.
0 <= x <= 100
The question that was asked to the respondent
The answer to the question provided by the respondent
A description of what you are trying to learn from the respondent for this question
Optional unique identifier for the question.
Aftercare will use this to build a data model to track questions across a survey
Optional identifier of a previous question in a follow-up thread
Number of quality issues detected
x >= 0
A score between 0 and 100 that represents the overall quality of the individual survey entry.
The score is a weighted average of the quality issue scores.
The lower the score, the greater the likelihood and severity of data quality issues.
0 <= x <= 100
Types of quality issues that can be detected in survey responses.
Nonsensical
- Response lacks logical meaning or sense. Likely gibberish.Irrelevant
- Response does not address the question.Low Effort
- Respondent did not put in much effort to answer the question. Lacks detail or concrete examples.LLM Generated
- Response appears to be generated by AI.Self Duplicated
- Responses from the same respondent contain duplicated content across multiple answers. Only evaluated when multiple survey entries are provided or if a survey identifier and response identifier is provided.Shared Duplicate
- Responses contain duplicated content across different respondents for the same question. Only evaluated if survey identifiers and question identifiers are provided.
Nonsensical
, Irrelevant
, Low Effort
, LLM Generated
, Repeated Answers
, Duplicate Answers
Score between 0-100 for this quality issue.
The higher the score, the greater the likelihood and severity of the quality issue.
0 <= x <= 100
Indicates if this issue was detected
If Aftercare has detected any quality issues for this survey entry
Optional identifier for the survey response. Aftercare can use this to asscociate survey entries for a single response.
If a response identifier is not provided, Aftercare will generate one.
Cursor for the next page of results
const response = await api.quality.getBatchJobStatus();
{
"batchJobId": "123e4567-e89b-12d3-a456-426614174000",
"status": "completed",
"results": {
"items": [],
"nextCursor": null
}
}