Validate an address
Validates the format of an address for a card order. Make sure to follow country-specific address fields and validation as described in the card address validation guide.
For virtual cards, the address field will be used as a billing address. It will be used for AVS checks in countries where it is required.
For physical cards, the address field will be used as a delivery address. It will be used to deliver your card and for AVS checks in countries where it is required.
{% admonition type="warning" %} We do not support PO BOX addresses. {% /admonition %}
Headers
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"firstLine": "56 Shoreditch High St",
"secondLine": "The Tea Bldg",
"city": "London",
"postCode": "E1 6JJ",
"country": "GB"
}Response
OK - Validation result returned. An empty errors collection means the address is valid.
Example response
{
"errors": [
{
"field": "postCode",
"message": "Please enter a valid postcode"
}
]
}