Skip to main content
PATCH
/
tax-rates
/
{id}
Update a tax rate
curl --request PATCH \
  --url https://www.ruddr.io/api/workspace/tax-rates/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "rate": 123,
  "isActive": true
}
'
{
  "id": "a5f3b1c8-6d27-4e94-82a0-d9e4c7f05b38",
  "name": "VAT (Value Added Tax)",
  "isActive": true,
  "rate": 0.21,
  "createdAt": "2025-08-03T16:12:08.491Z"
}
A named tax rate percentage that can be applied to line items on invoices.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The tax rate uuid.

Body

application/json
name
string

The name of the tax rate. Max 255 characters.

rate
number

The tax rate to be applied to invoices, expressed as a decimal between 0 and 1.

isActive
boolean

Whether the tax rate is active.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the tax rate.

isActive
boolean

Whether the tax rate is active.

rate
number

The tax rate applied to invoices, expressed as a decimal between 0 and 1.

createdAt
string<date-time>

The timestamp when the object was created.