Submit Residential Addresses
POST/api/accounts/:cardholderId/residential-addresses
Submit the current residential address of the cardholder in either structured or unstructured format.
This endpoint is for Immersve-conducted KYC only.
Request
Path Parameters
ID of the cardholder account.
- application/json
Body
array
required
Array [
- Structured address
- Unstructured address
]
anyOf
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.
An address written as a single string.
The ISO 3166-2 Country code of the country the address is in.
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.
KYC_ALREADY_PASSED Residential Addresses submission is not allowed after successful KYC checks (KYC profile is passed).
- application/json
- Schema
- Example (from schema)
Schema
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}