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": "8bfb1aa8-08cb-408c-a31c-0bd9fec3c63c",
"NetworkId": "8a8cc236-106f-4f5c-9996-7dd8c26dd088",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "372c52b5-b5f3-4d87-b22e-5d75476cd5e2",
"NetworkId": "9e4ee01c-1b31-4f72-98c7-d9149bf82320",
"TaxId": "194e52f4-292f-4712-a3dd-3012b6fa0e91",
"Amount": 4.0,
"DateFrom": "2025-12-08T05:22:52.3176541Z",
"DateTo": "2025-12-08T05:22:52.3176541Z",
"DisplayDateFrom": "2025/12/08 05:22:52",
"DisplayDateTo": "2025/12/08 05:22:52"
},
{
"Id": "372c52b5-b5f3-4d87-b22e-5d75476cd5e2",
"NetworkId": "9e4ee01c-1b31-4f72-98c7-d9149bf82320",
"TaxId": "194e52f4-292f-4712-a3dd-3012b6fa0e91",
"Amount": 4.0,
"DateFrom": "2025-12-08T05:22:52.3176541Z",
"DateTo": "2025-12-08T05:22:52.3176541Z",
"DisplayDateFrom": "2025/12/08 05:22:52",
"DisplayDateTo": "2025/12/08 05:22:52"
}
],
"TaxBillingConfiguration": {
"Id": "04df37b1-5de4-4782-9505-45ca01315d15",
"TaxId": "6d433410-f248-4d07-8154-6d90194ec28f",
"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>8bfb1aa8-08cb-408c-a31c-0bd9fec3c63c</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>8a8cc236-106f-4f5c-9996-7dd8c26dd088</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>04df37b1-5de4-4782-9505-45ca01315d15</Id>
<TaxId>6d433410-f248-4d07-8154-6d90194ec28f</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2025-12-08T05:22:52.3176541Z</DateFrom>
<DateTo>2025-12-08T05:22:52.3176541Z</DateTo>
<Id>372c52b5-b5f3-4d87-b22e-5d75476cd5e2</Id>
<NetworkId>9e4ee01c-1b31-4f72-98c7-d9149bf82320</NetworkId>
<TaxId>194e52f4-292f-4712-a3dd-3012b6fa0e91</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2025-12-08T05:22:52.3176541Z</DateFrom>
<DateTo>2025-12-08T05:22:52.3176541Z</DateTo>
<Id>372c52b5-b5f3-4d87-b22e-5d75476cd5e2</Id>
<NetworkId>9e4ee01c-1b31-4f72-98c7-d9149bf82320</NetworkId>
<TaxId>194e52f4-292f-4712-a3dd-3012b6fa0e91</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>