cURL
curl --request POST \ --url https://sandbox-umbrella-api.azurewebsites.net/api/services/identity/verify \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "raw": false, "identity": { "firstName": "John", "lastName": "Doe", "nationalId": "123456789", "birthDate": "1985/05/15" }, "address": { "street": "Main Street", "houseNumber": "123", "building": "Apt 4B", "postalCode": "10001", "city": "New York", "district": "Manhattan", "province": "NY", "countryCode": "US" }, "phone": { "phoneNumber": "+1234567890" } }'
{ "globalResult": { "totalScore": 100 }, "resultDetails": [ { "datasource": "<string>", "country": "<string>", "matches": [ { "record": "<string>", "match": "full" } ] } ] }
Identity Verification Service API Documentation
/identity/verify
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully retrieved the verification results.
The response is of type object.
object