Read tax codes

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://rest-api.developer.24sevenoffice.com/doc/v1/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"v1 MCP server": {
  "url": "https://rest-api.developer.24sevenoffice.com/doc/v1/mcp"
}
Close
GET /taxes

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

Headers

  • Authorization string Required

    Authorization header

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
    Hide response attributes Show response attributes object
    • id integer

      A unique identifier for the tax code within Finago Office ERP modules.

    • number integer

      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 \
 --request GET 'https://rest.api.24sevenoffice.com/v1/taxes' \
 --header "Authorization: string"
Response examples (200)
[
  {
    "id": 0,
    "number": 0,
    "name": "No VAT",
    "rate": 0
  },
  {
    "id": 1,
    "number": 1,
    "name": "Standard VAT",
    "rate": 25
  },
  {
    "id": 2,
    "number": 2,
    "name": "Reduced VAT",
    "rate": 15
  }
]