BillKit/Docs Console
Tax rates

Update tax rate

Correct a tax rate, retire it, or bring a retired one back into use.

POST/v1/tax_rates/{tax_rate_id}
Operation update_tax_rate · Scope tax_rates:write · Spec snapshot 2026-09-13

Parameters

ParameterDescription
tax_rate_idstring · pathrequiredNo description in the spec.
activeboolean | nulloptionalNo description in the spec.
display_namestring | nulloptionalAt most 255 characters.
inclusiveboolean | nulloptionalNo description in the spec.
rate_basis_pointsinteger | nulloptionalBetween 0 and 10000.

Returns

Returns a TaxRateResponse object.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the tax_rates:write scope.
404 No such object, or it belongs to the other mode.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X POST https://api.billkit.eu/v1/tax_rates/tr_9XKp2vQ1 \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
Request body · every field
{
  "active": false,
  "display_name": "Ada Lovelace",
  "inclusive": false,
  "rate_basis_points": 0
}
Response · 200 OK
{
  "active": false,
  "country_code": "NL",
  "created": 1789392000,
  "display_name": "Ada Lovelace",
  "id": "tr_9XKp2vQ1",
  "inclusive": false,
  "livemode": false,
  "object": "tax_rate",
  "rate_basis_points": 0
}