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": "626625a8-4d8b-4293-85da-0dc5baf51dd6",
"NetworkId": "eccf6836-243f-4c0f-82c2-39eb30beab06",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "81c882a1-64ab-47c4-ac13-7ced801be23d",
"NetworkId": "0787198f-152e-46a5-84ee-05081c812af4",
"TaxId": "d692e379-64fe-48c8-81b8-fa83c4c20fca",
"Amount": 4.0,
"DateFrom": "2026-02-24T05:21:59.8971149Z",
"DateTo": "2026-02-24T05:21:59.8971149Z",
"DisplayDateFrom": "2026/02/24 05:21:59",
"DisplayDateTo": "2026/02/24 05:21:59"
},
{
"Id": "81c882a1-64ab-47c4-ac13-7ced801be23d",
"NetworkId": "0787198f-152e-46a5-84ee-05081c812af4",
"TaxId": "d692e379-64fe-48c8-81b8-fa83c4c20fca",
"Amount": 4.0,
"DateFrom": "2026-02-24T05:21:59.8971149Z",
"DateTo": "2026-02-24T05:21:59.8971149Z",
"DisplayDateFrom": "2026/02/24 05:21:59",
"DisplayDateTo": "2026/02/24 05:21:59"
}
],
"TaxBillingConfiguration": {
"Id": "d81b0380-f3b0-477f-9450-e5d09467690d",
"TaxId": "7dc1ac6c-6a35-4a77-8656-20a291d49895",
"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>626625a8-4d8b-4293-85da-0dc5baf51dd6</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>eccf6836-243f-4c0f-82c2-39eb30beab06</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>d81b0380-f3b0-477f-9450-e5d09467690d</Id>
<TaxId>7dc1ac6c-6a35-4a77-8656-20a291d49895</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-02-24T05:21:59.8971149Z</DateFrom>
<DateTo>2026-02-24T05:21:59.8971149Z</DateTo>
<Id>81c882a1-64ab-47c4-ac13-7ced801be23d</Id>
<NetworkId>0787198f-152e-46a5-84ee-05081c812af4</NetworkId>
<TaxId>d692e379-64fe-48c8-81b8-fa83c4c20fca</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-02-24T05:21:59.8971149Z</DateFrom>
<DateTo>2026-02-24T05:21:59.8971149Z</DateTo>
<Id>81c882a1-64ab-47c4-ac13-7ced801be23d</Id>
<NetworkId>0787198f-152e-46a5-84ee-05081c812af4</NetworkId>
<TaxId>d692e379-64fe-48c8-81b8-fa83c4c20fca</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>