Skala
Tax rates

Replace a tax rate

Completely replaces the data of an existing tax rate with the provided payload.

PUT
/api/tax_rates/{id}

Completely replaces the data of an existing tax rate with the provided payload.

AuthorizationBearer <token>

In: header

Path Parameters

id*string

TaxRate identifier

Request Body

application/json

The updated TaxRate resource

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PUT "https://api.skalasuite.com/api/tax_rates/string" \  -H "Content-Type: application/json" \  -d '{    "rate": "string",    "name": "string"  }'
{
  "id": 0,
  "rate": "string",
  "name": "string",
  "isActive": true
}
Empty
Empty
Empty