For snapshot Politically Exposed Person (PEP), Sanction and Adverse Media checks and on-going (daily) monitoring. If an individual is added to one of our global watchlists a webhook and email will be generated with details of the alert, along with the details displayed in your dashboard. It is strongly recommended to implement the Webhooks in order to trigger other KYC and AML procedures. Please see On-Going PEP, Sanction, Adverse Media Screening blog for more product details.
To request an On-Going Screen, make a HTTPS POST request to https://api.lemverify.io/api/v1/{account_id}/ongoing, where {account_id} is your LEM Verify account ID found in the Account Setup section of the dashboard.
The body must contain the following parameters:
| Field | Type | Required | Notes |
|---|---|---|---|
| forename | String | Mandatory | A String containing the forename of the individual you wish to create the on-going screen for |
| middle | String | Optional | A String containing the middle name of the individual you wish to create the on-going screen for |
| surname | String | Mandatory | A String containing the surname of the individual you wish to create the on-going screen for |
| dob | String | Mandatory | A String containing the dob of the individual you wish to create the on-going screen for, in the format dd/mm/yyyy |
| clientRef | String | Mandatory | Your unique reference number to associate with the on-going screen |
If the request is successful (200 response) then the response body will look similar to the following:
This object will contain data relating a PEP, Sanction or Adverse Media alert when an ongoing search entity has been added to a new watchlist.
| Field | Type | Notes |
|---|---|---|
| id | string | Unique ID issued by LEM Verify to track the request |
| friendlyId | string | A shorter unique ID that is displayed in the LEM Verify dashboard |
| alerts | Array of Alert objects | The alerts associated with any watchlist matches. If the array is empty the individual is not associated with any watchlists. |
Example JSON:
{
"id": "ac5c9410-8155-11ea-a158-63c5d15b1f18",
"friendlyId": "xhtcV8kXDX5hxFxq9XgD5X",
"alerts": [
{
"firstName": "Donald John",
"lastName": "Trump",
"fullName": "Donald John Trump Sr",
"entityId": "LEM1930191",
"dateListed": "2010-08-05",
"reasonListed": "National:PEP:Govt Branch Member",
"entityName": "Trump, Donald John Sr",
"akas": [
{
"type": "AKA",
"fullName": "David Denison"
},
{
"type": "AKA",
"fullName": "ديفد دنيسون"
}
],
"additionalInfo": [
{
"type": "DOB",
"fullName": "1946-06-XX"
},
{
"type": "Occupation",
"fullName": "President of the United States (January 20, 2017 - January 20, 2021)."
},
{
"type": "Other",
"fullName": "Link to WorldCompliance Online Database"
},
{
"type": "Other",
"fullName": "Negative News Alert"
},
{
"type": "Other",
"fullName": "Sources of Record Information"
},
{
"type": "PlaceOfBirth",
"fullName": "New York City, New York, United States"
}
],
"addresses": [
{
"country": "United States"
},
{
"street1": "1600 Pennsylvania Ave NW",
"city": "Washington",
"stateProvinceDistrict": "District of Columbia",
"postalCode": "20500-0003",
"country": "United States"
}
]
}
]
}