Skip to main content
PATCH
/
tax
/
business_entities
/
{business_entity_id}
/
rates
/
{rate_id}
Update tax rate
curl --request PATCH \
  --url https://api.zenskar.com/tax/business_entities/{business_entity_id}/rates/{rate_id} \
  --header 'Content-Type: application/json' \
  --header 'organisation: <api-key>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "tax_name": "<string>",
  "rate_percent": 123,
  "is_compound": true,
  "compound_order": 123,
  "jurisdiction_level": "<string>",
  "jurisdiction_code": "<string>"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "jurisdiction_rate_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tax_name": "<string>",
  "rate_percent": 123,
  "is_compound": true,
  "compound_order": 123,
  "jurisdiction_level": "<string>",
  "jurisdiction_code": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs2.zenskar.com/llms.txt

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

Authorizations

x-api-key
string
header
default:<your-api-key>
required
organisation
string
header
default:<your-organisation-id>
required

Path Parameters

business_entity_id
string<uuid>
required
rate_id
string<uuid>
required

Body

application/json

Request body for updating a tax rate (all optional).

tax_name
string | null
rate_percent
number | null
is_compound
boolean | null
compound_order
integer | null
jurisdiction_level
string | null
jurisdiction_code
string | null

Response

Successful Response

Response shape for a tax rate row.

id
string<uuid>
required
jurisdiction_rate_id
string<uuid>
required
tax_name
string
required
rate_percent
number
required
is_compound
boolean
required
compound_order
integer
required
jurisdiction_level
string | null
required
jurisdiction_code
string | null
required