master_status for the flow.
Use this endpoint to track progress after uploading documents via /multiupload.
Endpoint
GET /v2/verification/statusRequest headers
JWT access token used for authentication.
Query params
UUID of the verification flow.
Your external identifier associated with the user (for example customer ID).
Response
List of statuses for each uploaded file.
Unique identifier for the uploaded file.
Your provided document identifier.
Processing status of the file (e.g.,
UPLOAD_SUCCESS, PROCESSING_SUCCESS).Overall status of the flow (e.g.,
IN_PROGRESS, SUCCESS, FAILED).Example
Status values
| Status | Meaning |
|---|---|
UPLOAD_SUCCESS | File uploaded successfully |
PROCESSING | Document is being processed |
PROCESSING_SUCCESS | Extraction completed successfully |
FAILED | Processing failed |
Error responses
| Status | Meaning |
|---|---|
400 | Missing or invalid parameters (e.g., missing flow_id) |
401 | Invalid or expired token |
409 | Applicant not found for given flow_id and external_reference_id |
410 | Applicant has been deleted |
Error examples
Notes
Use this API to poll processing status if you are not using a callback mechanism.
Wait until
master_status is SUCCESS before calling the extracts API.