Retrieves the VAT rate with the specified key.
Request Information
URI Parameters :
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The VAT rate id. |
globally unique identifier |
Required |
Body Parameters :
None.
Response Information
Resource Description :
IHttpActionResult containing the VAT rate, or 404 Not Found if it doesn't exist.
company_vat| Name | Description | Type | Additional 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
{
"id": "3083ee1b-5f21-4768-bcdf-262c46071fe6",
"db_country_id": "4cea57ec-a092-4b2e-b5c5-f2c54e30db07",
"quote": 3.1,
"name": "sample string 4",
"description": "sample string 5",
"start_date": "2026-09-16T09:25:21.3684444+00:00",
"end_date": "2026-09-16T09:25:21.3684444+00:00",
"is_default": true,
"legal_stipulation": "sample string 9",
"optional": true,
"archived": true,
"modified_dateutc": "2026-09-16T09:25:21.3684444+00:00"
}
application/xml, text/xml
<company_vat xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <archived>true</archived> <db_country_id>4cea57ec-a092-4b2e-b5c5-f2c54e30db07</db_country_id> <description>sample string 5</description> <end_date>2026-09-16T09:25:21.368Z</end_date> <id>3083ee1b-5f21-4768-bcdf-262c46071fe6</id> <is_default>true</is_default> <legal_stipulation>sample string 9</legal_stipulation> <modified_dateutc>2026-09-16T09:25:21.368Z</modified_dateutc> <name>sample string 4</name> <optional>true</optional> <quote>3.1</quote> <start_date>2026-09-16T09:25:21.368Z</start_date> </company_vat>