Developers

Replaces the TaxRate resource.

PUT
/finance/tax-rates/{id}

Replaces the TaxRate resource.

Authorization<token>

Value for the Authorization header parameter.

In: header

Path Parameters

id*string

TaxRate identifier

Request Body

The updated TaxRate resource

TypeScript Definitions

Use the request body type in TypeScript.

name*string
Lengthlength <= 100
value*number
Formatfloat
Rangevalue <= 75
isDefault*number
Formatfloat

Response Body

curl -X PUT "https://example.com/finance/tax-rates/string" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "value": 0.1,    "isDefault": 0.1  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "name": "string",  "value": 0.1,  "isDefault": false}