Pending Reviews
List structuring results awaiting manual review with GET /v1/structuring/approvals/pending. Each item links a result to the failed check that flagged it.
The pending review queue contains structuring results that failed one or more checks and require manual review before delivery. GET /v1/structuring/approvals/pending returns each failed check outcome, linking a structuring result to the check that flagged it. Use this endpoint to build review workflows or monitor data quality issues.
auto_approve_after_hours gate setting to prevent queue buildup./v1/structuring/approvals/pendingResponse
Response fields
Response
{
"data": [
{
"id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"result_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"check_id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"passed": false,
"details": { "field": "total_amount", "value": 1500000, "max": 1000000 },
"created_at": "2024-09-14T12:05:00.000Z",
"check_name": "Amount range check",
"severity": "warning"
}
]
}Errors
Error responses
Each item links a structuring result to the specific check that failed, so a single result can appear multiple times if it failed multiple checks. Use the result_id to group items by result, then call POST /v1/structuring/approvals/{id}/approve or /reject to action each one. Approving a result clears all its pending items and triggers the gate's on_approve action.