v1
latestOpenAPI 3.1.02026-07-2483219318.4 KBIdentity
[Enduring access] Verify a name
To verify your user's identity, you may wish to match the name that you have on file against an official record such as the bank account holder name or Party name.
This will match against all available sources from all accounts that the user has connected to your app.
For more details about the data returned, see:
- 📚 Enduring Verify Name
post/verify/name
Headers
X-Akahu-Idstring required
Your App ID Token.
Request body
Example request
{
"given_name": "Homer",
"middle_name": "Jay",
"family_name": "Simpson"
}Response
Success
Example response
{
"item": {
"sources": [
{
"type": "PARTY_NAME",
"match_result": "MATCH",
"meta": {
"initials": [
"H",
"J"
],
"given_name": "Homer",
"middle_name": "Jay",
"family_name": "Simpson",
"prefix": "MR",
"gender": "MALE"
},
"verification": {
"family_name": true,
"middle_name": true,
"given_name": true,
"middle_initial": true,
"given_initial": true
}
}
],
"name": {
"given_name": "Homer",
"middle_name": "Jay",
"family_name": "Simpson"
}
}
}