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": "50b06dc3-8202-44b1-8e4f-975c865b1333",
"NetworkId": "ee5577b8-2f2b-4a0f-8b0b-ec2bccfee741",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "37a13f61-0751-42b6-9149-765f4c1f019f",
"NetworkId": "60dfa4df-7a10-4d4c-8b33-3b5ec94e41b8",
"TaxId": "4bff9220-9b4b-449d-bda0-a2e385039eb1",
"Amount": 4.0,
"DateFrom": "2026-02-17T03:39:20.1607018Z",
"DateTo": "2026-02-17T03:39:20.1607018Z",
"DisplayDateFrom": "2026/02/17 03:39:20",
"DisplayDateTo": "2026/02/17 03:39:20"
},
{
"Id": "37a13f61-0751-42b6-9149-765f4c1f019f",
"NetworkId": "60dfa4df-7a10-4d4c-8b33-3b5ec94e41b8",
"TaxId": "4bff9220-9b4b-449d-bda0-a2e385039eb1",
"Amount": 4.0,
"DateFrom": "2026-02-17T03:39:20.1607018Z",
"DateTo": "2026-02-17T03:39:20.1607018Z",
"DisplayDateFrom": "2026/02/17 03:39:20",
"DisplayDateTo": "2026/02/17 03:39:20"
}
],
"TaxBillingConfiguration": {
"Id": "910c0881-356a-4cb4-ad11-48b4b6d4c685",
"TaxId": "2f4a6a7c-384d-4c83-b372-9ee7adbb9dbe",
"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>50b06dc3-8202-44b1-8e4f-975c865b1333</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>ee5577b8-2f2b-4a0f-8b0b-ec2bccfee741</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>910c0881-356a-4cb4-ad11-48b4b6d4c685</Id>
<TaxId>2f4a6a7c-384d-4c83-b372-9ee7adbb9dbe</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-02-17T03:39:20.1607018Z</DateFrom>
<DateTo>2026-02-17T03:39:20.1607018Z</DateTo>
<Id>37a13f61-0751-42b6-9149-765f4c1f019f</Id>
<NetworkId>60dfa4df-7a10-4d4c-8b33-3b5ec94e41b8</NetworkId>
<TaxId>4bff9220-9b4b-449d-bda0-a2e385039eb1</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-02-17T03:39:20.1607018Z</DateFrom>
<DateTo>2026-02-17T03:39:20.1607018Z</DateTo>
<Id>37a13f61-0751-42b6-9149-765f4c1f019f</Id>
<NetworkId>60dfa4df-7a10-4d4c-8b33-3b5ec94e41b8</NetworkId>
<TaxId>4bff9220-9b4b-449d-bda0-a2e385039eb1</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>