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

Overview |  Quickstart |  Documentation |  Downloads

question

Upvotes
Accepted
21 1 1 6

There are no transmitted fields in the case

Hello! Tell me please why in the created case in WC1 there are no transmitted fields for the client, such field as date of birth

Example, request: "request_id"=>1118736, "source"=>"CRM", "location"=>"id", "borrower_id"=>1119263, "full_name"=>"Edi Wibowo", "date_of_birth"=>"1978-08-31", "gender"=>"MALE", "country_location"=>"IDN"

In case 63b8daa2-152e-4c13-a8cd-26eada38e651 in field date_of_birth is null



world-checkworld-check-onedisplay-fields
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
Accepted
21 1 1 6

Thanks everyone! We found a mistake in our request

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.

@ruslan.valeev

Can you please post your solution so that it can benefit the other community members?

Upvotes
245 1 0 2

Hello @ruslan.valeev,


Are you submitting your case with date_of_birth field as a secondary identifier ?

Example I have in Python:

"secondaryFields\": [  { \"typeId\": \"SFCT_2\", \"dateTimeValue\":\""+dob_value+"\"} ],


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
4.2k 8 5 6

@ruslan.valeev

Can you please provide me the complete JSON payload you are sending?

Please compare the JSON request body you are sending to the below JSON. This JSON includes all the secondary identifiers.

{
  "groupId":"{
                {Enter your group-id}}",
  "entityType": "INDIVIDUAL",
  "providerTypes": [
    "WATCHLIST"
  ],
  "name": "Putin",
  "secondaryFields":[
    {  
        "typeId":"SFCT_1",
        "value":"MALE"
    },
    {  
        "typeId":"SFCT_2",
        "dateTimeValue":"1944-04-07"
        
    },
    { 
        "typeId":"SFCT_3",
        "value":"IND"
      },
  
      {  
        "typeId":"SFCT_5",
        "value":"IND"
}      ],
  "customFields":[]
}

Also, please confirm the API call that you are requesting?

Please let us know the response code of the API call too.

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.