Tax codes
Tax codes are used to determine the tax rules applied to a given product or service. The length of this list is in the hundreds. For a complete reference, see here.
The tax code object
A tax code object contains all tax information for a given product or service.
Properties
- Name
code
- Type
- string
The unique Zamp identifier for a product or service, referred to as the PTC (product tax code).
- Name
name
- Type
- string
Name of the tax code.
- Name
description
- Type
- string
Description of the tax code.
Example: tax code object
{
"code": "Z-FBV115",
"name": "Flavored and non-carbonated beverage",
"description": "Naturally or artificially flavored beverage that is not sweetened and is not carbonated."
}
GET/tax-codes
List tax codes
This endpoint returns a list of all product tax codes supported by Zamp.
This includes all product tax codes in a single response and does not
require any pagination.
Request
GET
/tax-codescurl -G https://api.zamp.com/tax-codes \
-H "Authorization: Bearer {token}"
Response
[
{
"code": "R_DIG",
"name": "Digital",
"description": "General digital products delivered electronically."
},
// ...
]