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": "6b3452ef-b596-4bf2-9cb8-7049b13c242b",
"NetworkId": "14c30530-f7d7-4e83-a9d3-7a329479254a",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "9555792f-8fc4-48b1-8d55-d8265c746e82",
"NetworkId": "5e2b0dab-1339-4271-82d9-9c4033342670",
"TaxId": "1fef769a-01d3-4310-99f2-69efda003fc8",
"Amount": 4.0,
"DateFrom": "2026-02-27T08:27:20.7116358Z",
"DateTo": "2026-02-27T08:27:20.7116358Z",
"DisplayDateFrom": "2026/02/27 08:27:20",
"DisplayDateTo": "2026/02/27 08:27:20"
},
{
"Id": "9555792f-8fc4-48b1-8d55-d8265c746e82",
"NetworkId": "5e2b0dab-1339-4271-82d9-9c4033342670",
"TaxId": "1fef769a-01d3-4310-99f2-69efda003fc8",
"Amount": 4.0,
"DateFrom": "2026-02-27T08:27:20.7116358Z",
"DateTo": "2026-02-27T08:27:20.7116358Z",
"DisplayDateFrom": "2026/02/27 08:27:20",
"DisplayDateTo": "2026/02/27 08:27:20"
}
],
"TaxBillingConfiguration": {
"Id": "bfbd0ba6-8529-4318-b185-578e4629df9b",
"TaxId": "688182e8-156a-4a3a-8f10-ca9d1a6dfb4d",
"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>6b3452ef-b596-4bf2-9cb8-7049b13c242b</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>14c30530-f7d7-4e83-a9d3-7a329479254a</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>bfbd0ba6-8529-4318-b185-578e4629df9b</Id>
<TaxId>688182e8-156a-4a3a-8f10-ca9d1a6dfb4d</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-02-27T08:27:20.7116358Z</DateFrom>
<DateTo>2026-02-27T08:27:20.7116358Z</DateTo>
<Id>9555792f-8fc4-48b1-8d55-d8265c746e82</Id>
<NetworkId>5e2b0dab-1339-4271-82d9-9c4033342670</NetworkId>
<TaxId>1fef769a-01d3-4310-99f2-69efda003fc8</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-02-27T08:27:20.7116358Z</DateFrom>
<DateTo>2026-02-27T08:27:20.7116358Z</DateTo>
<Id>9555792f-8fc4-48b1-8d55-d8265c746e82</Id>
<NetworkId>5e2b0dab-1339-4271-82d9-9c4033342670</NetworkId>
<TaxId>1fef769a-01d3-4310-99f2-69efda003fc8</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>