If I update the information of a user, i.e. adding an SSN and dateOfBirth before changing a user to “personal verified user” I get the following error:
dwollav2.error.ValidationError:text`{“code”:“ValidationError”,“message”:“Validation error(s) present. See embedded errors list for more details.”,"_embedded":{“errors”:[{“code”:“ReadOnly”,“message”:“DateOfBirth cannot be modified.”,“path”:"/dateOfBirth","_links":{}},{“code”:“ReadOnly”,“message”:“Ssn cannot be modified.”,“path”:"/ssn","_links":{}}]}}
However after removing the SSN and dateOfBirth from the fields and simply trying to change the type of user to “personal” I get the following error:
dwollav2.error.ServerError: {“code”:“ServerError”,“message”:“A server error occurred. Error ID: 9d04e11c-ac32-472d-89c3-ba845a1c1c46.”}
This is similar to the input I use when getting the second error: {‘firstName’: ‘John’, ‘lastName’: 'Doe ', ‘email’: ‘noone@gmail.com’, ‘state’: ‘NY’, ‘postalCode’: ‘10003’, ‘city’: ‘New York’, ‘address1’: '72 Wonderland Street ', ‘type’: ‘personal’}. Although the input of {‘type’:‘personal’} is enough to get the server error.
Please advise as to how I should proceed. It seems that if I add an SSN before upgrading a customer to a verified status then I cannot verify them at a later stage.