Skip to main content
POST
/
aml
/
screen
/
{id}
/
decision
curl -X POST \
  "https://verilock.io/api/v1/aml/screen/aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b/decision" \
  -H "X-API-Key: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "decision": "approve",
    "reason": "Name match is a false positive — different date of birth confirmed."
  }'
{
  "id": "aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b",
  "decision": "approve",
  "decided_by": "api_key_prod_a1b2c3d4",
  "decided_at": "2026-03-15T11:45:00Z"
}

Path Parameters

id
string
required
The AML screening ID

Body Parameters

decision
string
required
One of approve, decline, or escalate
reason
string
Reason or notes for the decision
curl -X POST \
  "https://verilock.io/api/v1/aml/screen/aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b/decision" \
  -H "X-API-Key: your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "decision": "approve",
    "reason": "Name match is a false positive — different date of birth confirmed."
  }'
{
  "id": "aml_8f3a9b2e-7c4d-4e1f-a6b5-3d2c1e0f9a8b",
  "decision": "approve",
  "decided_by": "api_key_prod_a1b2c3d4",
  "decided_at": "2026-03-15T11:45:00Z"
}