Thanks for being patient while we implement your feedback to improve the developer experience.
API Docs
Management APIs
Tax
Tax Settings

Tax Settings

Tax settings allow you to choose how a store handles tax calculation and price display. For example, you can set how a store handles taxes if an enabled tax service is unavailable. You can also choose whether prices include taxes when displayed on orders and invoices. For more info, see Tax Settings (opens in a new tab).

This guide shows you how to use the Tax Settings API. For more info, see the Tax Settings API Reference.

Get tax settings

To get tax settings, send a request to the Get tax settings endpoint.

Example request: Get tax settings
GET https://api.bigcommerce.com/stores/{{STORE_HASH}}/v3/tax/settings
X-Auth-Token: {{ACCESS_TOKEN}}
Content-Type: application/json
Accept: application/json

Update tax settings

To update tax settings, send a request to the Update tax settings endpoint. The request updates only the fields that you specify.

Example request: Update tax settings
PUT https://api.bigcommerce.com/stores/{{STORE_HASH}}/v3/tax/settings
X-Auth-Token: {{ACCESS_TOKEN}}
Content-Type: application/json
Accept: application/json
 
{
  "tax_entered_with_prices": false,
  "price_display_settings": {
    "invoice_price_display_strategy": "INCLUSIVE"
  }
}

Resources