lexera_route_to_specialist, the order moves through a human verification pipeline. Use lexera_get_order_status to poll the real-time state of the document until the attorney completes review and the certified artifacts become available.
Prerequisites
- The
order_idreturned from a successfullexera_route_to_specialistdispatch. - An active SSE session and a valid Bearer token.
Steps
1
Send the status request
POST a JSON-RPC 2.0 payload to your active SSE session URL with the The server returns
order_id as job_id.HTTP 202 Accepted. The status response streams back over the open SSE connection.2
Interpret the response
The response payload contains the
current_status field. Lexera documents two exhaustive statuses today:pending_admin_triage— The order was successfully dispatched and is awaiting human attorney review. The payload includesassigned_firm,authorized_amount, andrequires_human_verification: true.verified_executed— The attorney has completed review and issued the law firm-certified signature. The payload includes download URLs for the certified artifacts, attorney notes, and a completion timestamp.
3
Poll until verified_executed
Continue calling
lexera_get_order_status at reasonable intervals until current_status becomes verified_executed.Completed order example
When the attorney finishes review, the streamed payload looks like this:Next steps
- Once the status is
verified_executed, download the certified.docxartifacts by following the Download Artifacts guide. - For full parameter details, see the lexera_get_order_status reference.