Skip to main content
PUT
/
public
/
v2
/
product-tax-codes
/
{product_tax_code_id}
Update product tax code
curl --request PUT \
  --url https://api.dualentry.com/public/v2/product-tax-codes/{product_tax_code_id}/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "code": "<string>",
  "description": "<string>",
  "is_active": true
}
'
{
  "id": 123,
  "code": "<string>",
  "description": "<string>",
  "is_active": true,
  "is_global": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Path Parameters

product_tax_code_id
integer
required

Body

application/json
code
string | null
Minimum string length: 1
description
string | null
Minimum string length: 1
is_active
boolean | null

Response

OK

id
integer
required
code
string
required
description
string
required
source
enum<string>
required
Available options:
INTERNAL,
AVALARA
is_active
boolean
required
is_global
boolean
required
Last modified on May 28, 2026