Nimbu Developer Docs
ReferenceTax Schemes

Add a country tax rate

POST
/tax_schemes/{id}/rates

Authorization

AuthorizationBearer <token>

Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.

In: header

X-Nimbu-Site<token>

Identifier of the site context when authenticating with a personal access token.

In: header

Path Parameters

id*string

Tax scheme identifier

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/tax_schemes/string/rates" \  -H "Content-Type: application/json" \  -d '{    "code": "string",    "tax": 0  }'
{
  "id": "string",
  "code": "string",
  "tax": 0
}