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": "fa68bdb5-9c79-4648-867f-3797d04cec73",
"NetworkId": "533499a7-416f-4878-9b9d-b76d1679cf61",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "2bd13cce-2b81-4d01-9eb8-671f7de881d1",
"NetworkId": "811a6c80-8c63-45db-9810-953e9ac47cf1",
"TaxId": "4d494e20-7b2c-4f45-9378-b745c6e856f8",
"Amount": 4.0,
"DateFrom": "2026-06-23T20:52:27.8104866Z",
"DateTo": "2026-06-23T20:52:27.8104866Z",
"DisplayDateFrom": "2026/06/23 20:52:27",
"DisplayDateTo": "2026/06/23 20:52:27"
},
{
"Id": "2bd13cce-2b81-4d01-9eb8-671f7de881d1",
"NetworkId": "811a6c80-8c63-45db-9810-953e9ac47cf1",
"TaxId": "4d494e20-7b2c-4f45-9378-b745c6e856f8",
"Amount": 4.0,
"DateFrom": "2026-06-23T20:52:27.8104866Z",
"DateTo": "2026-06-23T20:52:27.8104866Z",
"DisplayDateFrom": "2026/06/23 20:52:27",
"DisplayDateTo": "2026/06/23 20:52:27"
}
],
"TaxBillingConfiguration": {
"Id": "f6d578f4-4362-4c96-96a3-53a83eb7e25e",
"TaxId": "e311b9fa-2158-40e5-b806-03943c4d060d",
"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>fa68bdb5-9c79-4648-867f-3797d04cec73</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>533499a7-416f-4878-9b9d-b76d1679cf61</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>f6d578f4-4362-4c96-96a3-53a83eb7e25e</Id>
<TaxId>e311b9fa-2158-40e5-b806-03943c4d060d</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-06-23T20:52:27.8104866Z</DateFrom>
<DateTo>2026-06-23T20:52:27.8104866Z</DateTo>
<Id>2bd13cce-2b81-4d01-9eb8-671f7de881d1</Id>
<NetworkId>811a6c80-8c63-45db-9810-953e9ac47cf1</NetworkId>
<TaxId>4d494e20-7b2c-4f45-9378-b745c6e856f8</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-06-23T20:52:27.8104866Z</DateFrom>
<DateTo>2026-06-23T20:52:27.8104866Z</DateTo>
<Id>2bd13cce-2b81-4d01-9eb8-671f7de881d1</Id>
<NetworkId>811a6c80-8c63-45db-9810-953e9ac47cf1</NetworkId>
<TaxId>4d494e20-7b2c-4f45-9378-b745c6e856f8</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>