For a deeper look into our World Check One API, look into:

Overview |  Quickstart |  Documentation |  Downloads

question

Upvotes
Accepted
5 0 0 3

add given name to search criteria in WC1

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.

world-checkworld-check-one
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
Accepted
2.4k 6 5 6

@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" }] }
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
4.2k 8 5 6

@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"
}

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
5 0 0 3

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

Thank you.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
5 0 0 3
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.