GET Taxes/{id}
Gets a tax by it's ID, represented as TaxDto.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the tax. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
The tax data.
TaxDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| NetworkId | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Description | string |
None. |
|
| Type | integer |
None. |
|
| Mode | integer |
None. |
|
| UseMode | integer |
None. |
|
| Active | boolean |
None. |
|
| Included | boolean |
None. |
|
| TaxValidities | Collection of TaxesValidityDto |
None. |
|
| TaxBillingConfiguration | TaxesBillingConfigurationDto |
None. |
|
| CodeDescription | string |
None. |
|
| TypeDescription | string |
None. |
|
| CurrentValueString | string |
None. |
|
| ModeDescription | string |
None. |
|
| UseModeDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "991741de-aaa8-4f34-957e-5e11037906d9",
"NetworkId": "ea3b82fd-5f16-42ed-8ab3-12d55d093636",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "95af998d-6bab-4518-bf52-07c698569faf",
"NetworkId": "c03d18fd-3173-4801-ad33-0b26f1697371",
"TaxId": "5b0ef32e-061d-43a5-804e-de93ac5130be",
"Amount": 4.0,
"DateFrom": "2026-07-22T06:00:42.579055Z",
"DateTo": "2026-07-22T06:00:42.579055Z",
"DisplayDateFrom": "2026/07/22 06:00:42",
"DisplayDateTo": "2026/07/22 06:00:42"
},
{
"Id": "95af998d-6bab-4518-bf52-07c698569faf",
"NetworkId": "c03d18fd-3173-4801-ad33-0b26f1697371",
"TaxId": "5b0ef32e-061d-43a5-804e-de93ac5130be",
"Amount": 4.0,
"DateFrom": "2026-07-22T06:00:42.579055Z",
"DateTo": "2026-07-22T06:00:42.579055Z",
"DisplayDateFrom": "2026/07/22 06:00:42",
"DisplayDateTo": "2026/07/22 06:00:42"
}
],
"TaxBillingConfiguration": {
"Id": "ab2500a9-740d-46b4-8f18-1e08e0d68a93",
"TaxId": "1a17425c-37c6-44a5-980d-e2b838ab1851",
"BillingType": 64,
"Factor": 64,
"Code": "sample string 2",
"Description": "sample string 3"
},
"CodeDescription": "sample string 3 - sample string 4",
"TypeDescription": "Fixed Tax",
"CurrentValueString": "",
"ModeDescription": "Perceptions",
"UseModeDescription": "Merchant"
}
application/xml, text/xml
Sample:
<TaxDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<Active>true</Active>
<Code>sample string 3</Code>
<Description>sample string 4</Description>
<Id>991741de-aaa8-4f34-957e-5e11037906d9</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>ea3b82fd-5f16-42ed-8ab3-12d55d093636</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>ab2500a9-740d-46b4-8f18-1e08e0d68a93</Id>
<TaxId>1a17425c-37c6-44a5-980d-e2b838ab1851</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-07-22T06:00:42.579055Z</DateFrom>
<DateTo>2026-07-22T06:00:42.579055Z</DateTo>
<Id>95af998d-6bab-4518-bf52-07c698569faf</Id>
<NetworkId>c03d18fd-3173-4801-ad33-0b26f1697371</NetworkId>
<TaxId>5b0ef32e-061d-43a5-804e-de93ac5130be</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-07-22T06:00:42.579055Z</DateFrom>
<DateTo>2026-07-22T06:00:42.579055Z</DateTo>
<Id>95af998d-6bab-4518-bf52-07c698569faf</Id>
<NetworkId>c03d18fd-3173-4801-ad33-0b26f1697371</NetworkId>
<TaxId>5b0ef32e-061d-43a5-804e-de93ac5130be</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>