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": "4b502d28-b726-44d2-b9c7-3f4717839129",
"NetworkId": "4881b306-f85c-42b6-b99d-c1bdaff725f8",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "1191c664-2eb3-4788-a442-121640d4480f",
"NetworkId": "abeb2c13-a4e6-4b33-aa75-76679627d523",
"TaxId": "0e04b8f8-29e2-497c-b729-7ca2ca2b2e12",
"Amount": 4.0,
"DateFrom": "2026-04-11T07:15:24.9235018Z",
"DateTo": "2026-04-11T07:15:24.9235018Z",
"DisplayDateFrom": "2026/04/11 07:15:24",
"DisplayDateTo": "2026/04/11 07:15:24"
},
{
"Id": "1191c664-2eb3-4788-a442-121640d4480f",
"NetworkId": "abeb2c13-a4e6-4b33-aa75-76679627d523",
"TaxId": "0e04b8f8-29e2-497c-b729-7ca2ca2b2e12",
"Amount": 4.0,
"DateFrom": "2026-04-11T07:15:24.9235018Z",
"DateTo": "2026-04-11T07:15:24.9235018Z",
"DisplayDateFrom": "2026/04/11 07:15:24",
"DisplayDateTo": "2026/04/11 07:15:24"
}
],
"TaxBillingConfiguration": {
"Id": "d41ff96f-0c2a-45ab-a523-8626e55ba5f5",
"TaxId": "3ea52482-9432-465b-94d7-ec7a9fe272b9",
"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>4b502d28-b726-44d2-b9c7-3f4717839129</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>4881b306-f85c-42b6-b99d-c1bdaff725f8</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>d41ff96f-0c2a-45ab-a523-8626e55ba5f5</Id>
<TaxId>3ea52482-9432-465b-94d7-ec7a9fe272b9</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-04-11T07:15:24.9235018Z</DateFrom>
<DateTo>2026-04-11T07:15:24.9235018Z</DateTo>
<Id>1191c664-2eb3-4788-a442-121640d4480f</Id>
<NetworkId>abeb2c13-a4e6-4b33-aa75-76679627d523</NetworkId>
<TaxId>0e04b8f8-29e2-497c-b729-7ca2ca2b2e12</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-04-11T07:15:24.9235018Z</DateFrom>
<DateTo>2026-04-11T07:15:24.9235018Z</DateTo>
<Id>1191c664-2eb3-4788-a442-121640d4480f</Id>
<NetworkId>abeb2c13-a4e6-4b33-aa75-76679627d523</NetworkId>
<TaxId>0e04b8f8-29e2-497c-b729-7ca2ca2b2e12</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>