Address
Address validation
Checks whether a given address is a valid delivery address for shipping purposes.
POST
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
The verification request containing the address. The following fields are mandatory -
- line1
- city
- postalCode
- state
- country
Represents the address used for validation.
Example:
{
"country": "country",
"city": "city",
"postalCode": "postalCode",
"state": "state",
"line3": "line3",
"line2": "line2",
"line1": "line1"
}
Response
200
application/json
Address is validated successfully
The validation status of an address.
Available options:
VALID
, INVALID