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.

Response

200
application/json

Tax can be calculated for the address provided.

The response is of type object.