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

# AML 온고잉 모니터링 결과

> 이 이벤트는 Anti-Money Laundering (AML) 온고잉 모니터링 결과가 확인될 때 트리거됩니다. AML 검사는 KYC 과정의 핵심 요소로, 잠재적 금융 범죄 위험을 평가합니다. 이 웹훅을 통해 실시간으로 제출된 건이 온고잉 모니터링 Worklist에 등록된 것을 확인할 수 있습니다.

<Note>
  AML 스크리닝은 KYC 승인(approved)이거나 Worklist에서 신규로 레코드를 등록하거나 POST AML 온고잉 모니터링으로 등록 후에 Worklist에서 설정한 검색 주기에 따라 수행됩니다. 또한, submissionId가 Worklist에 recordId로 등록된 후 해당 정보들이 웹훅으로 반환됩니다. KYC가 거절된 경우에는 AML 스크리닝이 수행되지 않습니다.
</Note>

```json aml-result-webhook-sample.json theme={null}
{
    "webhook_trigger": "aml_monitor",
    "submission_id": "string",
    "email": "string",
    "records": [
    {
      "recordId": "String",
      "worklistId": "String",
      "created_at": "String"
    },
    {
      "recordId": "String",
      "worklistId": "String",
      "created_at": "String"
    },
    ...
  ],
  "userid": "String",
  "tokenId": "String",
  "cf": {
    "cf1": "String",
    "cf2": "String",
    "cf3": "String"
  }
}
```

<ResponseField name="webhook_trigger" type="string">
  웹훅 이벤트 유형 - 'aml\_monitor'은 AML 온고잉 모니터링을 의미
</ResponseField>

<ResponseField name="submission_id" type="string">
  Submission ID - KYC 제출 건별 고유 식별자
</ResponseField>

<ResponseField name="email" type="string">
  제출된된 이메일
</ResponseField>

<ResponseField name="userid" type="string">
  userid 제출 시 반환
</ResponseField>

<ResponseField name="tokenId" type="string">
  tokenId 제출 시 반환
</ResponseField>

<ResponseField name="cf" type="object">
  cf 객체

  <Expandable title="properties">
    <ResponseField name="cf1" type="string">
      cf1 제출 시 반환
    </ResponseField>

    <ResponseField name="cf2" type="string">
      cf2 제출 시 반환
    </ResponseField>

    <ResponseField name="cf3" type="string">
      cf3 제출 시 반환
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="records" type="array">
  등록된 Record 데이터 배열

  <Expandable title="Array items">
    <ResponseField name="recordId" type="string">
      부여받은은 Record ID
    </ResponseField>

    <ResponseField name="worklistId" type="string">
      Record ID 가 등록된 worklist ID
    </ResponseField>

    <ResponseField name="created_at" type="string">
      Record ID 등록 시각
    </ResponseField>
  </Expandable>
</ResponseField>
