Skala
Tax rates

Create a new tax rate

Adds a new tax rate record to the database.

POST
/api/tax_rates

Adds a new tax rate record to the database.

AuthorizationBearer <token>

In: header

Request Body

application/json

The new TaxRate resource

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

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