PayNow

SalesTaxJurisdictionDto

Object representing a sales tax jurisdiction and its associated taxes.

namestringRequired
The name of the tax jurisdiction.
taxesSalesTaxJurisdictionTaxDto[]Required
List of taxes applied within this jurisdiction.
tax_amountstringRequired
The calculated tax amount, formatted as a string.
tax_namestringRequired
The name of the tax.
tax_ratestringRequired
The rate at which the tax is applied, formatted as a string.
taxable_amountstringRequired
The amount subject to taxation, formatted as a string.
not_taxed_reasonstringOptional
Explanation for why taxes are not applied, if applicable. This property is null when taxes are applied.
Example
{
  "name": "EU OSS",
  "taxes": [
    {
      "tax_amount": "string",
      "tax_name": "string",
      "tax_rate": "string",
      "taxable_amount": "string"
    }
  ],
  "not_taxed_reason": "string"
}