cURL
curl --request POST \ --url https://sandbox-umbrella-api.azurewebsites.net/api/services/address/verify \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "country": "PL", "address": { "street": "Doktora Jana Piltza", "number": "41", "zip": "30-392", "city": "Kraków", "province": "" }, "identity": { "firstname": "Pawel", "lastname": "Ramski", "dob": "2001/10/25" } }'
{ "inputAddress": "Doktora Jana Piltza 41 30-392 Kraków", "correctedAddress": "Piltza 41, 30-392 Kraków, Polska", "finalAddress": "Doktora Jana Piltza 41 30-392 Kraków", "addressStatus": "corrected", "addressComponents": {}, "matchQuality": "CITY_MATCH", "score": 50, "globalResult": { "overall": "REVIEW", "totalScore": 50 }, "identity": { "fullName": "Pawel Ramski", "dob": "2001/10/25" }, "extendedMessage": "cityMatch" }
Address Verification Service API Documentation
/address/verify
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully verified address.
The response is of type object.
object