> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lexera.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Order Statuses: Lifecycle From Dispatch to Executed

> The two documented order statuses for Lexera human-in-the-loop verification: pending_admin_triage after dispatch, and verified_executed after attorney review.

Every contract dispatched through `lexera_route_to_specialist` moves through a human verification pipeline tracked by `current_status`. Lexera documents two exhaustive statuses today. Understanding each state helps you build reliable polling logic and know exactly when certified artifacts are ready for download.

<Note>
  These are the exhaustive statuses documented today: `pending_admin_triage` and `verified_executed`. Intermediate states are not documented.
</Note>

## Status overview

| Status                 | When it occurs                                                                        | Key payload fields                                                                |
| ---------------------- | ------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- |
| `pending_admin_triage` | Immediately after a successful `lexera_route_to_specialist` dispatch.                 | `assigned_firm`, `authorized_amount`, `currency`, `requires_human_verification`   |
| `verified_executed`    | Once the human attorney completes review and issues the law firm-certified signature. | `certified_redline_url`, `certified_report_url`, `attorney_notes`, `completed_at` |

## pending\_admin\_triage

This is the initial status set as soon as Lexera accepts the dispatch. The contract has been assigned to a law firm queue, a temporary AED wallet hold has been placed, and the document is awaiting human attorney review.

### Example payload

```json theme={null}
{
  "status": "DISPATCH_SUCCESS",
  "order_id": "32e65a49-ba4c-441f-b8fe-73932e545f89",
  "current_status": "pending_admin_triage",
  "assigned_firm": "Legal Operations Smart Hold",
  "authorized_amount": 699,
  "currency": "AED",
  "requires_human_verification": true
}
```

At this stage, the `requires_human_verification` flag is `true`, confirming the document is in the human review pipeline.

## verified\_executed

This is the final status. The assigned attorney has completed the review, applied any requested specialist instructions, and issued the law firm-certified signature. The payload now includes download URLs for the finalized artifacts.

### Example payload

```json theme={null}
{
  "order_id": "32e65a49-ba4c-441f-b8fe-73932e545f89",
  "current_status": "verified_executed",
  "certified_redline_url": "https://lexera.dev/api/mcp/orders/32e65a49.../download",
  "certified_report_url": "https://lexera.dev/api/mcp/orders/32e65a49.../download",
  "attorney_notes": "Removed California law, updated to Dubai/UAE. Capped penalty.",
  "completed_at": "2026-08-24T09:15:11.356Z"
}
```

When you observe `verified_executed`, you can immediately download the `.docx` artifacts using the provided URLs and your Bearer token.

## Next steps

* To poll for status changes, see the [Poll Order Status guide](/guides/poll-order-status).
* For the full tool reference, see [lexera\_get\_order\_status](/tools/lexera-get-order-status).
