Screen Compliance Lists

Overview

The instruction will present how to check if targeted Business Partner or person is listed on any compliance list.

info

This instruction is based on Screen Compliance Lists documentation published in Developer Portal.

Scenario

In this instruction you will learn how to:

  1. Check targeted Business Partner based on provided example
  2. Interpret received data
  3. Modify the request to screen person.

Prerequisites

Authorization

Before trying CDQ APIs, user must be authenticated:

  1. Paste the API Key in the console's security bar into the X-API-KEY field.
auth7
  1. After pasting the API Key, the green padlock will appear.
auth8
Be careful

Green padlock doesn't mean that the API Key was pasted correctly.

  1. Check your API key for missing characters or extra space before trying.

No API Key?

  1. Check how to get one on authentication page
  2. Follow the steps above.

Step 1: Business Partner screening based on provided example.

To screen concrete Business Partner:

  1. Use the Screen Compliance Lists endpoint to send the below request.
application/json
{
  • "entry": {
    • "names": [
      • {
        • "value": "Klaus"
        }
      ],
    • "addresses": [
      • {
        • "country": {
          • "shortName": "DE"
          }
        }
      ]
    },
  • "dataSources": [
    • {
      • "technicalKey": "SANCTION_LIST"
      }
    ],
  • "lists": [
    • {
      • "technicalKey": "INFO4C_SL_22"
      }
    ]
}
  1. Check the above example in the Try It Console now!
  2. Select the Find a fuzzy candidate provided example.
  3. Click Send button.
Loading...
To extend the response's item list modify the request with limit parameter:
Copy
Copied
{
  "entry": {},
  "dataSources": [],
  "limit": "100"
}
Congratulations

Your Business Partner is screened!

Step 2: Interpret received data

The response contains the list of items that match the provided Business Partner. Each item contains the following information:

values

The list of items that match the provided Business Partner name .

FieldDescription
cdqIdThe unique identifier of the item.
entryThe item's data such as externalId, names, addresses, list, additionalInformation.
matchingProfileThe item's matching profile with matchingScores to rate screened data.
dataSourceThe item's compliance data source.
  • Change the lists parameter and fulfill with needed compliance lists.
info

Full list of available compliance lists is available in Compliance Lists documentation.

externalId

externalId is a unique identifier of the item in the data source used by customers in their own database.

names

names is a list of names of the searched person or business partner.

addresses

addresses is a list of addresses of the searched person or business partner.

list

list is a list of compliance lists that the person or business partner is listed on.

additionalInformation.

additionalInformation is a list of additional information about the item.

Step 3: Modify the request.

Now you will prepare the request to screen person against compliance lists.

info
Person to screen (Thoraya Barzan Ibrahim Hasan Al-Tikriti) was chosen as an example based on official european sanction list.

To modify the request body to screen chosen person:

  • Change the entry parameter to the person details provided above:
Copy
Copied
{
  "names": [
    {
      "value": "Thoraya Barzan Ibrahim Hasan Al-Tikriti"
    }
  ]
}
  • Change the dataSources parameter technical key to the SANCTION_LIST.
Copy
Copied
{
  "dataSources": [
    {
      "technicalKey": "SANCTION_LIST"
    }
  ]
}
attention

You can choose only one compliance list at a time.

Data SourceDescription
SANCTION_LISTList of people who are sanctioned by the government.
WATCHLISTList of people who are wanted by the police.
PEPPolitically Exposed Person.
  • Remove the lists parameter form the request body.
  • Add the matchingThreshold parameter to the request to limit the screening results.
Copy
Copied
{
  "matchingThreshold": 0.85
}
  • Check the below example in the Try It Console:
Copy
Copied
{
    "entry": {
        "names": [{
                "value": "Thoraya Barzan Ibrahim Hasan Al-Tikriti"
}]
    },
    "dataSources": [{
            "technicalKey": "SANCTION_LIST"
        }],
    "matchingThreshold": 0.85
}
  • Expand the results to see which sanction lists the person you are looking for has been placed on.