Verify an address
Overview
Get our GraphQL Playground running
Validate an address
mutation addressValidate($input: AddressValidateInput!) {
addressValidate(input: $input) {
address {
id
line1
line2
city
state
country
postalCode
verification {
status
precision
}
}
addressUserErrors {
code
field
message
}
}
}How to interpret the validation
Last updated