add given name to search criteria in WC1

Options

Hello,

How can I add given name in search criteria?

{
"secondaryFields": [],
"entityType": "INDIVIDUAL",
"customFields": [],
"groupId":"{{group-id}}",
"providerTypes": [
"WATCHLIST"
],
"name": "putin"
}

Where can I add the given name "Vladimir" here ?

Thank you.

Best Answer

  • Mehran.Ahmed Khan
    Answer ✓

    @pavel.ustinov

    You can make use of the secondaryFields array to add secondary identifiers like nationality, gender, DOB, place of birth, etc, please use the API "SEQ-pre-group-case-template: Get the case template for a group" to obtain the list of secondary identifiers that you can use while screening a name.

    For example, your request would look like this:

    { "groupId": "{{group-id}}", "entityType": "INDIVIDUAL", "providerTypes": ["WATCHLIST"], "name": "Vladimir Putin", "secondaryFields": [{ "typeId": "SFCT_1", "value": "MALE" }, { "typeId": "SFCT_2", "dateTimeValue": "1986-10-12" }, { "typeId": "SFCT_3", "value": "RUS" }, { "typeId": "SFCT_4", "value": "RUS" }, { "typeId": "SFCT_5", "value": "RUS" }] }

Answers

  • @pavel.ustinov

    You can add the first name in the name field itself. You can add the complete name in the name field. The order of the words allows the system to predict the first name, middle name and the last name.

    Please find the JSON below:

    {
    "secondaryFields": [],
    "entityType": "INDIVIDUAL",
    "customFields": [],
    "groupId":"{{group-id}}",
    "providerTypes": [
    "WATCHLIST"
    ],
    "name": "Vladimir Putin"
    }

  • Thanks for real-time answer! And what's about nationality of the searching person? Where can I add this info?

    Thank you.