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": "1b701497-b86b-4397-8540-b734a94cc90f",
"NetworkId": "32c52838-dccb-4154-a65f-5c9fce6e109c",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "0515859e-8185-4b8e-8abf-a42ce3dae504",
"NetworkId": "b1798e41-c222-462a-a3f3-fc0f9fd55e66",
"TaxId": "10fee080-d66b-4f41-ac2b-c1628ca7a7d2",
"Amount": 4.0,
"DateFrom": "2025-12-18T13:14:35.8724425Z",
"DateTo": "2025-12-18T13:14:35.8724425Z",
"DisplayDateFrom": "2025/12/18 13:14:35",
"DisplayDateTo": "2025/12/18 13:14:35"
},
{
"Id": "0515859e-8185-4b8e-8abf-a42ce3dae504",
"NetworkId": "b1798e41-c222-462a-a3f3-fc0f9fd55e66",
"TaxId": "10fee080-d66b-4f41-ac2b-c1628ca7a7d2",
"Amount": 4.0,
"DateFrom": "2025-12-18T13:14:35.8724425Z",
"DateTo": "2025-12-18T13:14:35.8724425Z",
"DisplayDateFrom": "2025/12/18 13:14:35",
"DisplayDateTo": "2025/12/18 13:14:35"
}
],
"TaxBillingConfiguration": {
"Id": "08541f03-5e89-4c96-a458-7814d1baa0cd",
"TaxId": "bd3e4755-6751-459d-8f2f-b688072d93bf",
"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>1b701497-b86b-4397-8540-b734a94cc90f</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>32c52838-dccb-4154-a65f-5c9fce6e109c</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>08541f03-5e89-4c96-a458-7814d1baa0cd</Id>
<TaxId>bd3e4755-6751-459d-8f2f-b688072d93bf</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2025-12-18T13:14:35.8724425Z</DateFrom>
<DateTo>2025-12-18T13:14:35.8724425Z</DateTo>
<Id>0515859e-8185-4b8e-8abf-a42ce3dae504</Id>
<NetworkId>b1798e41-c222-462a-a3f3-fc0f9fd55e66</NetworkId>
<TaxId>10fee080-d66b-4f41-ac2b-c1628ca7a7d2</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2025-12-18T13:14:35.8724425Z</DateFrom>
<DateTo>2025-12-18T13:14:35.8724425Z</DateTo>
<Id>0515859e-8185-4b8e-8abf-a42ce3dae504</Id>
<NetworkId>b1798e41-c222-462a-a3f3-fc0f9fd55e66</NetworkId>
<TaxId>10fee080-d66b-4f41-ac2b-c1628ca7a7d2</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>