Get Review Item
Retrieve one review item by ID with GET /v1/review/:id: confidence score, low-confidence fields, per-field decisions, and reviewer comments in one call.
GET /v1/review/:id retrieves the full detail of a single Record Review item: a validation record awaiting or having completed record-level human review. Beyond the list-level fields, the detail adds field_decisions (per-field review decisions), low_confidence_fields (the field keys that triggered the review), and review_comment. This is the data needed to build custom review interfaces.
low_confidence_fields array lists the specific field keys that fell below the confidence threshold and triggered this item for review. Use this to highlight problematic fields in your review UI./v1/review/:idResponse
Response fields
Response
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"run_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"document_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"schema_id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"status": "pending",
"overall_confidence": 0.72,
"assigned_to": null,
"reviewed_by": null,
"reviewed_at": null,
"created_at": "2024-10-12T09:00:00.000Z",
"links": {
"self": "/v1/review/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"action": "/v1/review/a1b2c3d4-e5f6-7890-abcd-ef1234567890/action"
},
"field_decisions": null,
"low_confidence_fields": ["total_amount"],
"review_comment": null
}Errors
Error responses
Use the low_confidence_fields array to highlight problematic cells in your review UI before calling POST /v1/review/:id/action. The field_decisions object persists per-field overrides, so you can build interfaces where reviewers correct individual values and submit the decision in one step.