Retrieves all VAT rates, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of VAT rates.

company_vat
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
db_country_id

Foreign key of the country this VAT regime applies to.

globally unique identifier
quote

VAT rate (percentage) applied under this regime.

decimal number
name

Name of this VAT regime.

string
description

Free-text description of this VAT regime.

string
start_date

Date and time from which this VAT regime is valid.

date
end_date

Date and time until which this VAT regime remains valid.

date
is_default

Indicates this is the default VAT regime for its country when none is explicitly specified.

boolean
legal_stipulation

Legal text/stipulation to display when this VAT regime is applied (e.g. reverse-charge notice).

string
optional

Indicates whether applying this VAT regime is optional rather than mandatory.

boolean
archived

Indicates whether this VAT regime has been archived (no longer selectable).

boolean
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "74da43d0-30c1-4936-9f81-9f469b323de5",
  "db_country_id": "8e33da6b-6eb4-4079-9c25-1bf1eafb4c34",
  "quote": 3.1,
  "name": "sample string 4",
  "description": "sample string 5",
  "start_date": "2026-09-16T08:36:56.4099283+00:00",
  "end_date": "2026-09-16T08:36:56.4099283+00:00",
  "is_default": true,
  "legal_stipulation": "sample string 9",
  "optional": true,
  "archived": true,
  "modified_dateutc": "2026-09-16T08:36:56.4099283+00:00"
}

application/xml, text/xml

Sample:
<company_vat xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <archived>true</archived>
  <db_country_id>8e33da6b-6eb4-4079-9c25-1bf1eafb4c34</db_country_id>
  <description>sample string 5</description>
  <end_date>2026-09-16T08:36:56.409Z</end_date>
  <id>74da43d0-30c1-4936-9f81-9f469b323de5</id>
  <is_default>true</is_default>
  <legal_stipulation>sample string 9</legal_stipulation>
  <modified_dateutc>2026-09-16T08:36:56.409Z</modified_dateutc>
  <name>sample string 4</name>
  <optional>true</optional>
  <quote>3.1</quote>
  <start_date>2026-09-16T08:36:56.409Z</start_date>
</company_vat>