cURL
curl --request POST \ --url https://sandbox-umbrella-api.azurewebsites.net/api/services/aml/checkIndividual \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "Boris Johnson", "dob": "1964/06/19" } '
{ "timestamp": "2024/09/24T19:16:00Z", "totalHits": 1, "foundRecords": [ { "id": "c438b18a93cd3c13", "sourceType": "PEP", "pepType": "POLITICIAN", "sourceId": "dilisense_pep", "entityType": "INDIVIDUAL", "gender": "MALE", "name": "Boris Johnson", "lastNames": [ "Johnson", "Pfeffel" ], "aliasNames": [ "Alexander Boris de Pfeffel Johnson", "Boris", "BoJo" ], "givenNames": [ "Alexander", "Boris" ], "dateOfBirth": [ "1964/06/19" ], "placeOfBirth": [ "New York City" ], "citizenship": [ "GB", "US" ], "occupations": [ "journalist", "politician" ], "positions": [ "2001/06/07 - 2005/04/11 Member of the 53rd Parliament of the United Kingdom", "Since 2019/07/24 Prime Minister of the United Kingdom" ], "politicalParties": [ "Conservative Party" ], "links": [ "https://www.gov.uk/government/people/boris-johnson", "Facebook: borisjohnson" ] } ] }
AML Check Individual Service API Documentation
/aml/checkIndividual
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Search string checked against name fields.
"Boris Johnson"
Date of birth in the format yyyy/mm/dd.
"1964/06/19"
A JSON array of matching individuals.
The timestamp of the response (ISO 8601 date time).
"2024/09/24T19:16:00Z"
The total number of hits for the searched parameters.
1
Array with attributes of type Individual.
Show child attributes
Unique identifier for the record.
"c438b18a93cd3c13"
Possible values: SANCTION, PEP, CRIMINAL.
SANCTION
PEP
CRIMINAL
"PEP"
Type of PEP (e.g., POLITICIAN, JUDGE, BOARD_MEMBER_OF_CENTRAL_BANK).
"POLITICIAN"
The source ID of the list.
"dilisense_pep"
Enumeration: INDIVIDUAL, UNKNOWN.
INDIVIDUAL
UNKNOWN
"INDIVIDUAL"
Enumeration: FEMALE, MALE, UNKNOWN.
FEMALE
MALE
"MALE"
Name of the individual.
A list of last names of this individual.
["Johnson", "Pfeffel"]
A list of alias names of this individual.
[ "Alexander Boris de Pfeffel Johnson", "Boris", "BoJo"]
A list of given names of this individual.
["Alexander", "Boris"]
A list of dates of birth for this individual.
["1964/06/19"]
A list of places of birth for this individual.
["New York City"]
A list of citizenships for this individual in ISO 3166-1 alpha-2 format.
["GB", "US"]
A list of occupations for this individual.
["journalist", "politician"]
A list of positions for this individual.
[ "2001/06/07 - 2005/04/11 Member of the 53rd Parliament of the United Kingdom", "Since 2019/07/24 Prime Minister of the United Kingdom"]
A list of political parties for this individual.
["Conservative Party"]
A list of links for this individual (e.g., websites, email addresses).
[ "https://www.gov.uk/government/people/boris-johnson", "Facebook: borisjohnson"]