List Taxes
OAuthScope
ZohoCommerce.settings.READ
HTTP Request
GET https://commerce.zoho.com/store/api/v1/settings/taxrules
Request Example
Copiedcurl -i -L -X GET
-H "Authorization:Zoho-oauthtoken ***"
-H "X-com-zoho-store-organizationid:58927961"
-H "Content-Type:application/json"
'https://commerce.zoho.com/store/api/v1/settings/taxrules'
Sucess Response
Copied{
"code": 0,
"message": "success",
"taxrules": [
{
"rule_id": "261000000007033",
"country_code": "CA",
"country_name": "Canada",
"tax_id": "261000000007005",
"tax_name": "GST",
"tax_percentage": 10.000000,
"is_tax_overridden": false,
"total_states": 13,
"configured_states": 0
}
],
"page_context": {
"page": 1,
"per_page": 200,
"has_more_page": false
}
}
Show full
Show less