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

# Update a tax rate

`PUT /taxes/rates/{id}`

Use when changing a tax rate (e.g. rate value or name). Request body contains the fields to update.

## Path parameters

- `id` string, required

## Request body

- UpdateTaxRateRequest
  - `code` string — code is the updated unique alphanumeric identifier for the tax rate
  - `description` string — description is the updated text description for the tax rate
  - `metadata` object — metadata contains updated key-value pairs that will replace existing metadata
  - `name` string — name is the updated human-readable name for the tax rate
  - `tax_rate_status` 'ACTIVE' | 'INACTIVE'

## Response `200`

OK

- TaxRateResponse
  - `code` string
  - `created_at` string, date-time
  - `created_by` string
  - `description` string
  - `environment_id` string
  - `fixed_value` string
  - `id` string
  - `metadata` object
  - `name` string
  - `percentage_value` string
  - `scope` 'INTERNAL' | 'EXTERNAL' | 'ONETIME'
  - `status` 'published' | 'deleted' | 'archived'
  - `tax_rate_status` 'ACTIVE' | 'INACTIVE'
  - `tax_rate_type` 'percentage' | 'fixed'
  - `tenant_id` string
  - `updated_at` string, date-time
  - `updated_by` string

## Other responses

- `400` — Invalid request
- `500` — Server error

## Changes

- **2026-07-15** `f8ecf435d25d` — 2 warning
  - added the new `not_implemented` enum value to the `code` response property for the response status `400`
  - added the new `not_implemented` enum value to the `code` response property for the response status `500`
- **2026-07-09** `7d57386313c7` — 6 breaking, 10 warning, 2 info
  - request property `tax_rate_status` was restricted to a list of enum values
  - the `tax_rate_status` request property type/format changed from ``/`` to `string`/``
  - the `scope` response's property type/format changed from ``/`` to `string`/`` for status `200`
  - the `status` response's property type/format changed from ``/`` to `string`/`` for status `200`
  - …14 more
- **2026-07-09** `4b1a811c4179` — 9 breaking, 10 info
  - removed the enum value `ACTIVE` of the request property `tax_rate_status`
  - removed the enum value `INACTIVE` of the request property `tax_rate_status`
  - the `tax_rate_status` request property type/format changed from `string`/`` to ``/``
  - the `created_at` response's property type/format changed from `string`/`date-time` to `string`/`` for status `200`
  - …15 more
- …earlier changes not shown

[Full history](https://skmtc.dev/flexprice/apis/flexprice-api/changes/taxes/rates/:id/put.md)

---

[API](https://skmtc.dev/flexprice/apis/flexprice-api.md) · [All operations](https://skmtc.dev/flexprice/apis/flexprice-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/flexprice/flexprice-api/revisions/9cd0dab91f5c/schema)
