PayNow

SalesTaxEstimateDto

The Sales Tax estimation for the passed in customer country / IP. Include the tax percentage + abbreviation in your product view to inform your customers about the tax.

country_codestringRequired
The ISO country code.
country_namestringRequired
The full name of the country.
currencystringRequired
The local currency used in the country.
eservice_ratenumberRequired
The tax rate applicable for electronic services, as a percentage.
eu_member_statebooleanRequired
Indicates whether the country is a member of the European Union.
percentagenumberRequired
The VAT rate (synonym for EServiceRate).
vat_abbreviationstringRequired
The abbreviation of the tax term in the local language.
vat_local_namestringRequired
The full name of the tax term in the local language.
tax_number_abbreviationstringOptional
The abbreviation of the local tax identification number.
tax_number_local_namestringOptional
The name of the local tax identification number.
Example
{
  "country_code": "CZ",
  "country_name": "Czech Republic",
  "currency": "CZK",
  "eservice_rate": 21,
  "eu_member_state": true,
  "percentage": 21,
  "vat_abbreviation": "DPH",
  "vat_local_name": "Daň z přidané hodnoty",
  "tax_number_abbreviation": "string",
  "tax_number_local_name": "string"
}