---
title: "Update a tax rate"
method: PUT
path: "/api/tax-rates/{id}"
tags: ["Tax Rate"]
---

# Update a tax rate

`PUT /api/tax-rates/{id}`

## Path parameters

- `id` string, required

## Request body

- TaxRateUpdateDto — Details of tax rate to be update
  - `code` string, required — The code for the tax rate. Must be unique to all active tax rates.
  - `rate` number, double, required — Tax rate. This is the proportion (0.17 = 17%)
  - `applyToLandedCosts` boolean — Indicate if this tax rate applies to landed costs.

## Response `200`

Tax rate update

- TaxRateDto — Tax rate definition.
  - `id` string, required — Unique id associated to this entity.
  - `code` string, required — Identifying code. Must be unique.
  - `provider` 'avalaraOrder' | 'avalaraInvoice'
  - `rate` number, double, required — Tax Rate (%)
  - `applyToLandedCosts` boolean — Indicate if this tax rate applies to landed costs.
  - `deleted` boolean — Indicate if this record is deleted.

## Other responses

- `400` — Validation issues with input

---

[API](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi.md) · [All operations](https://skmtc.net/fulcrumpro/apis/fulcrum-publicapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fulcrumpro/fulcrum-publicapi/versions/1b5649cff14a/schema)
