Headers
-
Correlation header to be set in a request and retrieved in the relevant response
GET
/api/v1/end-user-identity
curl \
-X GET https://iban.nash.io/api/v1/end-user-identity \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "X-Request-ID: string"
Response examples (200)
{
"_links": {
"consents": {
"href": "/v1/consents"
},
"self": {
"href": "/v1/accounts"
},
"trustedBeneficiaries": {
"href": "/v1/trusted-beneficiaries"
}
},
"identity": {
"first_name": "Balthazar",
"full_name": "M. Balthazar Dupond",
"last_name": "Dupond",
"name_prefix": "MIST"
}
}
Response examples (200)
{
"_links": {
"self": {
"href": "/v1/accounts"
},
"consents": {
"href": "/v1/consents"
},
"trustedBeneficiaries": {
"href": "/v1/trusted-beneficiaries"
}
},
"identity": {
"full_name": "M. Balthazar Dupond",
"last_name": "Dupond",
"first_name": "Balthazar",
"name_prefix": "MIST"
}
}