POST
/
address
/
check-taxability
curl --request POST \
  --url https://rest.taxes.provider.com/api/v1/address/check-taxability \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address": {
    "line1": "",
    "line2": "",
    "line3": "",
    "city": "IRVINE",
    "state": "CA",
    "country": "US",
    "postalCode": "92614"
  }
}'
{
  "isTaxable": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The taxability request containing the address. Postal code & Country is mandatory.

address
object

Represents the address used for validation.

Response

200 - application/json
isTaxable
boolean
required

The taxability of the address.