v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Tax

๐Ÿ”’ Get Tax Entry by ID

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 specific tax entry by its ID.

get/api/v1/tax/{id}

Path parameters

idstring required

The ID of the tax entry to retrieve.

Response

Successful operation

Example response

{
  "data": {
    "id": "1",
    "name": "VAT 19%",
    "taxType": "standard",
    "taxRate": 19,
    "countryCode": "DE",
    "zipCode": "",
    "isDefault": true,
    "isStandard": true,
    "defaultRevenueAccountNumber": "8400",
    "defaultDebitTaxAccountNumber": null,
    "defaultCreditTaxAccountNumber": null,
    "defaultCostAccountNumber": null,
    "validFrom": "2022-01-01T00:00:00Z",
    "validUntil": null,
    "createdAt": "2022-01-01T00:00:00Z",
    "updatedAt": "2022-01-01T00:00:00Z"
  }
}