-
Notifications
You must be signed in to change notification settings - Fork 41
docs(tax): TAX-1750 add store operations docs for tax customers and tax property type field #929
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
5211351
to
5652d1e
Compare
…ax property type field
|
||
The Tax Properties API allows merchants to vary the tax information they send to tax providers for tax calculation. In some jurisdictions, tax rates for products vary by product composition. For example, accurate taxation of alcohol may require information about alcohol percentage. Using tax properties, providers can return more accurate tax quotes. The examples in this guide expand on this use case. | ||
The Tax Properties API allows merchants to vary the tax information they send to tax providers for tax calculation. In some jurisdictions, tax rates for products vary by product composition. For example, accurate taxation of alcohol may require information about alcohol percentage. Using tax properties, providers can return more accurate tax quotes. The examples in this guide expand on this use case. | ||
|
||
Tax providers may sometimes need multiple inputs that can vary between different types of product. For example, for products with alcohol, the alcohol percentage and the volume sold affect alcohol taxes. As shown in this guide, merchants can provide both pieces of information to tax providers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As above, I think we can drop this paragraph - it's largely a repeat and seems to only be pointing out that users can have multiple product tax properties.
|
||
The Tax Properties API allows merchants to vary the tax information they send to tax providers for tax calculation. In some jurisdictions, tax rates for products vary by product composition. For example, accurate taxation of alcohol may require information about alcohol percentage. Using tax properties, providers can return more accurate tax quotes. The examples in this guide expand on this use case. | ||
The Tax Properties API allows merchants to vary the tax information they send to tax providers for tax calculation. In some jurisdictions, tax rates for products vary by product composition. For example, accurate taxation of alcohol may require information about alcohol percentage. Using tax properties, providers can return more accurate tax quotes. The examples in this guide expand on this use case. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍻 Now that we're talking about two types of tax properties, I think it makes sense to shuffle some of this around and go even more high-level...
The Tax Properties API allows merchants to vary the tax information they send to tax providers for tax calculation. In some jurisdictions, tax rates for products vary by product composition. For example, accurate taxation of alcohol may require information about alcohol percentage. Using tax properties, providers can return more accurate tax quotes. The examples in this guide expand on this use case. | |
The Tax Properties API allows merchants to vary the tax information they send to tax providers for tax calculation. | |
In some jurisdictions, tax rates for products vary by product composition. For example, accurate taxation of alcohol may require information about alcohol percentage. Using product tax properties, providers can return more accurate tax quotes. | |
Tax calculation may also be influenced by customer data that sits outside the standard BigCommerce customer model. For example, a tax provider may provide a tax exemption based on exemption certificates associated with third party ERP customer ID. Using customer tax properties, providers can apply the relevant adjustments to the transacting customer's tax quote. | |
The examples in this guide expand on these product and customer use cases. |
|
||
Tax providers may sometimes need multiple inputs that can vary between different types of product. For example, for products with alcohol, the alcohol percentage and the volume sold affect alcohol taxes. As shown in this guide, merchants can provide both pieces of information to tax providers. | ||
|
||
The API also supports **customer tax properties**, which allow merchants to provide customer-specific tax information to tax providers. These properties can influence how tax is calculated based on the customer making the purchase. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍻 See above 🙏
TAX-1750
What changed?
/v3/tax/customers
endpoint, for configuring customer tax data (currently justtax_properties
)type
field to dictate whether property is associated toPRODUCT
orCUSTOMER
Release notes draft
type
field to tax properties, allowing you to specify whether a property is associated with a product or a customer. If not set, it will default toPRODUCT
./v3/tax/customers
endpoint for managing customer tax data. Supports the following operations:GET
: Retrieve tax data for one or more customers.PUT
: Add or update tax properties for customers.DELETE
: Remove tax data for specified customers.Anything else?
/v3/tax/customers
endpoint #927ping @bigcommerce/team-tax