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": "f44f1908-33d6-42a3-ae42-74d38118c47b",
"NetworkId": "8bbd8ab6-cc55-4618-a104-91689e9c30fb",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "67aff20f-3c7d-4050-8336-8103294bf6ca",
"NetworkId": "5c6ed78d-f1be-4edc-b738-504e9c69c723",
"TaxId": "3cc80a84-c23e-4918-8d26-469a3a0484a6",
"Amount": 4.0,
"DateFrom": "2026-05-03T19:14:29.8351124Z",
"DateTo": "2026-05-03T19:14:29.8351124Z",
"DisplayDateFrom": "2026/05/03 19:14:29",
"DisplayDateTo": "2026/05/03 19:14:29"
},
{
"Id": "67aff20f-3c7d-4050-8336-8103294bf6ca",
"NetworkId": "5c6ed78d-f1be-4edc-b738-504e9c69c723",
"TaxId": "3cc80a84-c23e-4918-8d26-469a3a0484a6",
"Amount": 4.0,
"DateFrom": "2026-05-03T19:14:29.8351124Z",
"DateTo": "2026-05-03T19:14:29.8351124Z",
"DisplayDateFrom": "2026/05/03 19:14:29",
"DisplayDateTo": "2026/05/03 19:14:29"
}
],
"TaxBillingConfiguration": {
"Id": "359dba79-8f45-41fb-bac1-4db43e5ec050",
"TaxId": "72a5c47c-8650-4007-a859-66e8cce8454c",
"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>f44f1908-33d6-42a3-ae42-74d38118c47b</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>8bbd8ab6-cc55-4618-a104-91689e9c30fb</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>359dba79-8f45-41fb-bac1-4db43e5ec050</Id>
<TaxId>72a5c47c-8650-4007-a859-66e8cce8454c</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-05-03T19:14:29.8351124Z</DateFrom>
<DateTo>2026-05-03T19:14:29.8351124Z</DateTo>
<Id>67aff20f-3c7d-4050-8336-8103294bf6ca</Id>
<NetworkId>5c6ed78d-f1be-4edc-b738-504e9c69c723</NetworkId>
<TaxId>3cc80a84-c23e-4918-8d26-469a3a0484a6</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-05-03T19:14:29.8351124Z</DateFrom>
<DateTo>2026-05-03T19:14:29.8351124Z</DateTo>
<Id>67aff20f-3c7d-4050-8336-8103294bf6ca</Id>
<NetworkId>5c6ed78d-f1be-4edc-b738-504e9c69c723</NetworkId>
<TaxId>3cc80a84-c23e-4918-8d26-469a3a0484a6</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>