Skip to main content
PUT
/
vat-rates
/
{id}
Update a VAT rate description
curl --request PUT \
  --url https://api.contazen.ro/v1/vat-rates/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>"
}
'
{
  "success": true,
  "object": "vat_rate",
  "data": {
    "id": "<string>",
    "percent": 19,
    "description": "19% - TVA",
    "is_used": true,
    "can_be_deleted": true,
    "is_custom": true
  }
}

Overview

Only description is mutable. percent is immutable — changing it would silently invalidate every bill line that already references this rate and break the historical audit trail. To replace a rate with a new percent, add a new rate and migrate referencing invoices manually.

Authorizations

Authorization
string
header
required

Use your API key (sk_live_xxx or sk_test_xxx)

Path Parameters

id
string
required

VAT rate CzUid

Body

application/json
description
string

Response

Rate updated

success
boolean
object
enum<string>
Available options:
vat_rate
data
object