Retrieve a collection of expense VAT rates
GET/api/expense_vats
This API endpoint is designed to retrieve a collection of expense VAT rates, providing a valuable tool for accessing recent expense VAT rates data for an account within your system.
Prerequisites:
To use this endpoint you need to have the ACCOUNTING scope for the API Key. Please contact your relation manager to get this permission.
Request
Query Parameters
page integer
Default value: 1
The collection page number
itemsPerPage integer
Possible values: <= 50
Default value: 30
The number of items per page
pagination boolean
Enable or disable pagination
Responses
- 200
- 401
- 403
OK - The request was processed successfully.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
id integer
name string
value string
externalId stringnull
importTax boolean
[
{
"id": 0,
"name": "Travels",
"value": "11",
"externalId": "11234534",
"importTax": "11"
}
]
Unauthorised -- Your access token is wrong.
- application/json
- Schema
- Example (from schema)
Schema
type string
title string
detail string
{
"type": "string",
"title": "string",
"detail": "string"
}
Forbidden -- Access to the requested resource or action is forbidden.
Loading...