To perform a new international screening check you must send a POST request to the /api/v2/ci/entities/{entityId}/data-checks/sanctions-and-peps endpoint.
You must specify an entityId as part of this request. If you do not have an existing Entity that you wish to use you must first create an Entity - see the Create a new Entity page for more details on this.
As part of your request you must specify a request body, such as:
{
"firstName": "string",
"middleNames": "string",
"surname": "string",
"datasets": [
1
],
"dateOfBirth": "2023-09-05T08:51:43.282Z",
"useAllCountries": true,
"countries": [
"string"
],
"addToWatchList": true,
"watchListPeriodType": 0,
"watchListPeriod": 0,
"dateOfBirthMatching": 0,
"nameMatching": 0,
"useAllPepTiers": true,
"includePepTiers": [
0
]
}
Request body values
firstName - mandatory
This is the first name of the individual you are seeking to verify.
middleNames - nullable
This is the middle name(s)of the individual you are seeking to verify.
surname - mandatory
This is the surname of the individual you are seeking to verify.
datasets - mandatory
This value determines the datasets that are used as part of the datacheck - the relevant values should be provided as an array e.g. [1,2,3,4].
The following values can be used:
ID | Dataset |
1 | Politically exposed persons |
2 | Sanctions |
3 | Adverse media |
4 | Law enforcement |
5 | Disqualified directors |
6 | Former politically exposed persons |
7 | Linked politically exposed persons |
8 | Former sanctions |
dateOfBirth - mandatory if used for matching, otherwise nullable
This is the date of birth of the individual you are seeking to verify - it must be provided in the format specified in the example body. If date of birth is not used for matching this field is nullable.
useAllCountries - mandatory
Determines the countries included as part of the search. This is a boolean value so must be set as true or false.
countries - nullable
Determines the countries included as part of the search if useAllCountries is set to false. This can be null if useAllCountries is set to true.
addToWatchList
Determines if the individual is added to ongoing monitoring. This is a Boolean value so must be set as true or false.
watchListPeriodType
Determines the period type for watchlist, this field is mandatory if addToWatchList is set to true.
The value must be set as one of the following:
ID | Dataset |
0 | Days |
1 | Weeks |
2 | Months |
3 | Years |
4 | Until cancelled |
This value works in conjunction with watchListPeriod e.g. a watchListPeriodType of 3 and a watchListPeriod of 1 = 1 year of ongoing monitoring .
watchListPeriod
This is an integer value that determines the period of ongoing monitoring, this field is mandatory if addToWatchList is set to true.
This value works in conjunction with watchListPeriodType e.g. a watchListPeriodType of 2 and a watchListPeriod of 6 = 6 months ongoing monitoring.
dateOfBirthMatching - mandatory
Determines the method of date of birth matching used as part of the datacheck. The value must be set as one of the below:
ID | Date of birth matching criteria |
0 | None |
1 | Exact |
2 | Same year |
3 | Within one year |
4 | Within two years |
5 | Within three years |
6 | Within four years |
7 | Within five years |
nameMatching - mandatory
Determines the method of name matching used as part of the datacheck. The value must be set as one of the below:
ID | Name matching criteria |
0 | Exact |
1 | Fuzzy |
useAllPepTiers - mandatory
Determines if all pep tiers are used as part of the datacheck. This is a boolean value so must be set as true or false.
includePepTiers - nullable
Determines the PEP tiers used if useAllPepTiers is set to false. If useAllPepTiers is set to true this field is nullable.
The value must set as an array using the below values if useAllPepTiers is false:
ID | Date of birth matching criteria |
0 | Unknown |
1 | PEP tier 1 |
2 | PEP tier 2 |
3 | PEP tier 3 |
4 | PEP by association |
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article