AML Screening & Monitoring Integration

Integration guide

API-only guide

To integrate AML Screening & Monitoring via our API, follow these steps:

Click to magnify



1. Authenticate

Create an access token to authenticate in our API:

  • You provide your Fourthline API key.
  • You receive an access_token.

API Reference – Create access token

Important
For security, access tokens are valid for 1 hour only.
If your token expires, make another Create access token request.


2. Create client profile

Create a profile for the client:

  • You provide your unique identifier for the client, their identity data, and specify screening or monitoring.
  • You receive a Fourthline client id.

API Reference – Create AML client profile

Important
AML Monitoring starts automatically.
Check the monitoring status in the webhook notification.


3. Start screening

AML Screening only

Trigger the screening for one or multiple clients:

  • You provide the clientId (same value as the id returned in the Create AML client response) for the client(s) you want to screen.
  • You receive the status of each client's screening.

API Reference – Start screening

Status: Check the screening status in the webhook notifications.


4. Get hit information

If we find any hits, you can get information about them as required via the following API requests:

RequestDescription
Get latest client hitGet the most recent hit for the client.
Get all client hitsGet all hits for the client.
Get investigation hitsGet all hits for a specific AML investigation.

If we find a confirmed hit, get the investigation identifier needed to download the Confirmed Hit Report:

  • You provide the clientId (same value as the id returned in the Create AML client response).
  • You receive information about the investigation and the identifier (verificationId).

API Reference – Get latest client hit

Note
Multiple investigations can be linked to a single AML clientId.

5. Download the report

If there are any confirmed hits, download the Confirmed Hit Report:

  • You provide the investigation identifier (verificationId).
  • A successful response is empty and the report is downloaded.

API Reference – Get Confirmed Hit Report

Tip
You can also download a CDD Report via a Get CDD PDF request, passing the investigation identifier: verificationId.

Success
Success
You have integrated AML Screening/Monitoring!

Top of page