AML Check

The AML Check product allows you to perform due diligence on your customers by screening them against global watchlists, politically exposed persons lists, and adverse media publications. The product returns whether the screened customers are found on any of these and the corresponding details which can be used to assess the customers’ associated risks.

Integration Options

Currently only available via the Rest API.

Endpoint

Request type: POST

Request Values

The AML Check product requires the following input parameters which should be contained in a JSON body object submitted to the endpoint

*we highly recommend sending the birth_year to reduce the number of false matches

Example JSON Body

{
    "birth_year": "1984",
    "countries": ["US"],
    "full_name": "John Leo Doe",
    "job_id": "3ba0e15e-1a56-4799-a94d-b0e084f50256",
    "partner_id": "023",
    "search_existing_user": false,
    "signature": "...",
    "timestamp": "2021-08-12T17:57:00.614879",
    "user_id": "4cb0f26-2b567-5800-b05e-c0f095g6036"
}

Return Values

The AML Check product returns details of the customer screening and additional basic information about the user such as aliases, addresses, date of births, etc. whenever available.\

Example JSON Response

{
  "Actions": {
    "Listed": "Listed"
  },
  "PartnerParams": {
    "job_type": 10,
    "user_id": "4cb0f26-2b567-5800-b05e-c0f095g6036",
    "job_id": "3ba0e15e-1a56-4799-a94d-b0e084f50256"
  },
  "SmileJobID": "0000000411",
  "no_of_persons_found": 1,
  "people": [
    {
      "addresses": [
        "Burbank"
      ],
      "adverse_media": [
        {
          "date_published": "2021-09-24",
          "publisher": "Regulatory Times",
          "source_link": "https:regulatorytimes.com/article",
          "title": "Jon Doe angered regulators"
        }
      ],
      "aliases": [
        "John Doe"
      ],
      "associations": [
        {
          "association_type": "PEP",
          "name": "Bob Smith",
          "relationship": "Bob Smith is an associate of John Leo Doe"
        }
      ],
      "dates_of_birth": [
        "1984-07-16"
      ],
      "name": "John Leo Doe",
      "nationalities": [
        "American"
      ],
      "pep": {
        "pep_level": 1,
        "political_positions": [
          {
            "country": "United States",
            "from": "2020-01-05",
            "position": "Representative",
            "to": "2022-01-05"
          },
          {
            "country": "United States",
            "from": "2022-01-05",
            "position": "Senator",
            "to": null
          }
        ],
        "sources": [
          {
            "source_link": "https://www.senate.gov/senators/",
            "source_name": "senate.gov"
          }
        ]
      },
      "sanctions": [
        {
          "date_of_birth": "",
          "nationality": "American",
          "source_details": {
            "listed_date": "2020-01-05",
            "source_link": [
              "https://sanctionslist.com"
            ],
            "source_name": "Office of Foreign Assets Control (OFAC)",
            "source_type": "Sanctions"
          }
        }
      ]
    }
  ],
  "ResultCode": "1030",
  "ResultText": "Found on list",
  "signature": "...",
  "timestamp": "2023-02-17T16:24:16.835Z"
}

Error Codes

Error codes occur when there is a general failure that prevents the system from processing the job. AML Check jobs that return errors do not show up in the job list page of the portal.\

Result Codes and Result Texts

AML check jobs that are processed successfully can have the following result codes

\

Last updated