Read tax codes

GET /taxes

Read a list of tax codes available in the accounting system.

Headers

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    Hide response attributes Show response attributes object

    A single tax code

    • id number

      A unique identifier for the tax code within 24SevenOffice ERP modules.

    • number number

      The tax code reference number visible for users.

    • name string

      The name of the tax code.

    • rate number

      The tax rate percentage, expressed as a whole number. For example, a tax rate of 25% is represented as 25.

GET /taxes
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/taxes \
 -H "Authorization: string"
Response examples (200)
[
  {
    "id": 1,
    "name": "Standard VAT",
    "rate": 25,
    "number": 1
  },
  {
    "id": 2,
    "name": "Reduced VAT",
    "rate": 15,
    "number": 2
  }
]