I am trying the API via a java programm. I've got this answer from the server for only 7 records in my database.
They present special characters as well as other records that were accepted (using exactly the same code)
The clock should be also synchronized
I used the answers provided in the forum in order to input names with special characters. It works for all records (also containing special characters) but not for this 7 records
Example that does not work:
{"groupId":"5jb6vhs4m9iv1gjs49dj8nwxu","entityType":"INDIVIDUAL","providerTypes":["WATCHLIST"],"name":"PIULACHS ALTAYÓ MARÍA TERESA","nameTransposition":"true","secondaryFields":[{"typeId":"SFCT_1","value":"FEMALE"},{"typeId":"SFCT_2","dateTimeValue":"1959-03-02"},{"typeId":"SFCT_4","value":"ESP"}],"customFields":[{"typeId":"5jb81n2w8eu01gjs4bubmqdlf","value":"QAM_2e727550-9816-32cf-9a61-618166f9010b"},{"typeId":"5jb81n2w8eu01gjs4bubmqdlg","value":"Contacts"}]}
Example that works
{"groupId":"5jb6vhs4m9iv1gjs49dj8nwxu","entityType":"INDIVIDUAL","providerTypes":["WATCHLIST"],"name":"PIULACHS ALTAYÓ MONTSERRAT","nameTransposition":"true","secondaryFields":[{"typeId":"SFCT_1","value":"FEMALE"},{"typeId":"SFCT_2","dateTimeValue":"1929-04-30"},{"typeId":"SFCT_4","value":"ESP"}],"customFields":[{"typeId":"5jb81n2w8eu01gjs4bubmqdlf","value":"QAM_54ea6be1-df05-4a22-f8bc-6181673e5a8d"},{"typeId":"5jb81n2w8eu01gjs4bubmqdlg","value":"Contacts"}]}
Have you got an ides what can be wrong ?
I've already checked the clock synchronization.
There no more than 30 seconds delay between creation the hmac authorization and sending the file
I've used the same code for both requests
Names are written in UTF-8
Regards