v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Tax Type

๐Ÿ”’ Create tax type

This endpoint is currently in Beta and available for testing. It may contain bugs, and breaking changes can occur at any time without prior notice. We do not recommend using Beta endpoints in production environments. Should you choose to use it in production, you assume full responsibility for any resulting issues.

Creates a single tax type.

post/api/v1/taxType

Request body

namestring required

Tax type name

descriptionstring

Tax type description

Response

Created

idstring

Tax type ID

namestring

Tax type name

descriptionstring nullable

Tax type description

isStandardboolean

Is standard tax type

createdAtstring date-time

Created at timestamp

updatedAtstring date-time

Updated at timestamp

Example response

{
  "id": "1",
  "name": "custom_tax_type",
  "description": "Custom tax type for testing",
  "isStandard": false,
  "createdAt": "2022-01-01T00:00:00Z",
  "updatedAt": "2022-01-01T00:00:00Z"
}