21 September 2026
CartsOrdersProject configurationGraphQL
When tax is included in the price (
includedInPrice is true on a TaxRate), you can now choose whether the net price or the tax amount is rounded using the new taxRoundingTarget field.Use
taxRoundingTarget: Tax when the tax amount is the authoritative figure, such as for UK VAT at 20%. Otherwise, the default taxRoundingTarget: Net keeps the previous rounding behavior.You can also set
taxRoundingTarget when supplying a Tax Rate as input, such as in Order Import. When you omit taxRoundingTarget, it defaults to Net, so existing requests remain valid.For more information, see Tax rounding target.
Changes:
- [API] Added the TaxRoundingTarget type.
- [API] Added the
taxRoundingTargetfield to TaxRate. - [API] Added the
taxRoundingTargetfield to TaxRateDraft. - [API] Added the
taxRoundingTargetfield to ExternalTaxRateDraft. - [GraphQL API] Added the
TaxRoundingTargetenum. - [GraphQL API] Added the
taxRoundingTargetfield to theTaxRatetype. - [GraphQL API] Added the
taxRoundingTargetfield to theTaxRateDraftinput type. - [GraphQL API] Added the
taxRoundingTargetfield to theTaxRateInputinput type. - [GraphQL API] Added the
taxRoundingTargetfield to theExternalTaxRateDraftinput type. - [GraphQL API] Added the
taxRoundingTargetfield to theExternalTaxRateDraftOutputtype.