Read a tax code by ID

GET /taxes/{id}

Read details of a specific tax code identified by its unique ID.

Headers

Path parameters

  • id integer(int32) Required

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

    Minimum value is 1.

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/{id}
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/taxes/1 \
 -H "Authorization: string"
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string

# Payload
{
  "id": 1,
  "number": 1,
  "name": "Standard VAT",
  "rate": 25
}