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": "a30657b3-8c3d-457b-a4d0-ddba864f13bd",
"NetworkId": "304bcca4-796a-44e8-9852-5231994600d9",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "e39848d6-62f0-4443-936e-695a5ef9ea4a",
"NetworkId": "efe23c7f-1cb0-42ef-a273-da37010434d8",
"TaxId": "40447327-4735-4d9a-865c-d1dbd65c01d4",
"Amount": 4.0,
"DateFrom": "2026-01-23T23:13:02.8628183Z",
"DateTo": "2026-01-23T23:13:02.8628183Z",
"DisplayDateFrom": "2026/01/23 23:13:02",
"DisplayDateTo": "2026/01/23 23:13:02"
},
{
"Id": "e39848d6-62f0-4443-936e-695a5ef9ea4a",
"NetworkId": "efe23c7f-1cb0-42ef-a273-da37010434d8",
"TaxId": "40447327-4735-4d9a-865c-d1dbd65c01d4",
"Amount": 4.0,
"DateFrom": "2026-01-23T23:13:02.8628183Z",
"DateTo": "2026-01-23T23:13:02.8628183Z",
"DisplayDateFrom": "2026/01/23 23:13:02",
"DisplayDateTo": "2026/01/23 23:13:02"
}
],
"TaxBillingConfiguration": {
"Id": "a6295db5-1ea1-48e9-afda-ad4c649c768e",
"TaxId": "9441b805-1aff-4879-b03a-0fd1e3a0c740",
"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>a30657b3-8c3d-457b-a4d0-ddba864f13bd</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>304bcca4-796a-44e8-9852-5231994600d9</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>a6295db5-1ea1-48e9-afda-ad4c649c768e</Id>
<TaxId>9441b805-1aff-4879-b03a-0fd1e3a0c740</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-01-23T23:13:02.8628183Z</DateFrom>
<DateTo>2026-01-23T23:13:02.8628183Z</DateTo>
<Id>e39848d6-62f0-4443-936e-695a5ef9ea4a</Id>
<NetworkId>efe23c7f-1cb0-42ef-a273-da37010434d8</NetworkId>
<TaxId>40447327-4735-4d9a-865c-d1dbd65c01d4</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-01-23T23:13:02.8628183Z</DateFrom>
<DateTo>2026-01-23T23:13:02.8628183Z</DateTo>
<Id>e39848d6-62f0-4443-936e-695a5ef9ea4a</Id>
<NetworkId>efe23c7f-1cb0-42ef-a273-da37010434d8</NetworkId>
<TaxId>40447327-4735-4d9a-865c-d1dbd65c01d4</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>