Taxes

Each product can be assigned one or more tax, defined as a code, name, and rate.

Get all taxes

GET /v1/companies/5678/taxes Get all taxes

A tax’s rate is a factor that should be multiplied by the base price to calculate the tax amount.

For example, GST above has a rate of 0.1, commonly known as 10%. To calculate the GST on $5, multiply it by the tax rate, i.e. $5 × 0.1 = $0.50.

Get a tax

GET /v1/companies/5678/taxes/829 Get a tax

Create a tax

POST /v1/companies/5678/taxes Create a tax

Get all tax groups

GET /v1/companies/5678/taxes/groups Get all tax groups

Get a tax group

GET /v1/companies/5678/taxes/groups/1178 Get a tax group

A tax group’s rate is the sum of the included tax rates.

List of Webhooks

Here is a list of the supported webhook topics.

taxes/created

When a tax is created. You will receive the complete tax.

taxes/updated

When a tax is updated. You will receive the complete tax after the modifications have been applied.

taxes/deleted

When a tax is deleted. You will receive the complete tax.