v1
latestOpenAPI 3.0.02026-07-2455104.8 MBTax Type
๐ List Tax Type Entries
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.
Retrieves a list of tax type entries.
get/api/v1/taxType
Query parameters
The following filter key values are available:\n\nname (string): Tax type name \n\ndescription (string): Tax type description \n\nisStandard (bool): Is standard tax type true / false\n\ncreatedAt (string): format: date-time : Created at, example: 2022-09-13T12:41:18+02:00 \n\nupdatedAt (string): format: date-time : Updated at, example: 2022-09-13T12:41:18+02:00
[
{
"key": "id"
}
]Response
Successful operation
Example response
{
"data": [
{
"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"
}
]
}