Sales Tax API
Core Concepts
Corporations
Calculate
Transactions
- Tax Transactions
- POSTCreate a transaction
- GETGet transaction
- GETList transactions
- DELDelete transaction
- Refund Transactions
- Bulk Transaction Import
Nexus
Registrations
Products
Customers
Exemption Certificates
Products
Update product
Update an existing product by id.
POST
/
products
/
:id
curl --request POST \
--url https://base_url/api/v1/products/:id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "SunShield Pro UV-Blocking Sunglasses",
"tax_code": "TPP",
"description": "<string>"
}'
{
"message": "Successfully updated product."
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
Create product response.
The response is of type object
.
curl --request POST \
--url https://base_url/api/v1/products/:id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "SunShield Pro UV-Blocking Sunglasses",
"tax_code": "TPP",
"description": "<string>"
}'
{
"message": "Successfully updated product."
}