TaxConfigurations
Retrieve a tax configuration
Retrieve a single tax configuration by ID. The response includes the configuration's name, optional description, and the full set of rate sets that apply to it — useful for surfacing the active tax rules in a back-office editor, or for previewing what rates will be applied before testing a calculation against /calculate.
get/shop/tax-configurations/{taxConfigurationId}
Response
A single tax configuration.
Example response
{
"data": {
"name": "UK VAT",
"description": "Applies to most items sold in the UK",
"rate_sets": [
{
"tax_rates": [
{
"name": "VAT",
"percentage": 17.5
}
]
}
]
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.