v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBIngestion
List per-row import errors for a job
Returns the stored per-row parse/normalization errors for an ingestion job (capped at 100 per job), with the uncapped failure total and truncation accounting. Lets clients explain failed or partially-failed imports.
get/v1/imports/contexts/{contextId}/jobs/{jobId}/errors
Path parameters
contextIdstring uuid required
Context ID
Context ID
jobIdstring uuid required
Job ID
Job ID
Response
OK
Example response
{
"errorCap": 100,
"items": [
{
"field": "amount",
"message": "invalid decimal",
"row": 15
}
],
"storedErrors": 100,
"totalErrors": 1000,
"truncated": true
}