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

# AML Decision

> Submit a manual decision on an AML screening result after reviewing the matches.

## Path Parameters

<ParamField path="id" type="string" required>
  The AML screening ID
</ParamField>

## Body Parameters

<ParamField body="decision" type="string" required>
  One of `approve`, `decline`, or `escalate`
</ParamField>

<ParamField body="reason" type="string">
  Reason or notes for the decision
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST \
    "https://verilock.io/api/v1/aml/screen/aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b/decision" \
    -H "Authorization: Bearer qi_live_your_api_key_here" \
    -H "Content-Type: application/json" \
    -d '{
      "decision": "approve",
      "reason": "Name match is a false positive — different date of birth confirmed."
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b",
    "decision": "approve",
    "decided_by": "api_key_prod_a1b2c3d4",
    "decided_at": "2026-03-15T11:45:00Z"
  }
  ```
</ResponseExample>
