Get Residential Addresses
GET/api/accounts/:cardholderId/residential-addresses
Retrieve previously submitted residential addresses of the cardholder.
This endpoint is for Immersve-conducted KYC only.
Request
Path Parameters
ID of the cardholder account.
Responses
- 200
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
The unit number.
Street number. Generally a number but can also be alphanumeric.
Street name.
The town/village/suburb/city.
The suburb in the town/city. Only use this if you require a suburb AND a town/city, otherwise, just use the "town" parameter.
The state. Use local abbreviations such as VIC (Victoria) or TX (Texas).
The county, province, or cantonment.
Postal code.
The ISO 3166-2 Country code of the country the address is in.
The submitted unstructured address.
[
{
"unitNumber": "1",
"streetNumber": "3A",
"streetName": "Victoria Street",
"town": "Auckland",
"suburb": "Epsom",
"state": "AKL",
"region": "Auckland",
"postalCode": "1050",
"country": "NZ",
"fullAddress": "1/3A Victoria Street, Epsom, Auckland 1050, New Zealand"
}
]
Subject is not allowed to perform the action with the reason stated in the errorCode
FORBIDDEN Resource does not exist or there are no sufficient permissions to perform the action.
- application/json
- Schema
- Example (from schema)
Schema
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}