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": "77cc1d45-f516-407a-8e64-e438eba4cc8c",
"NetworkId": "9bff8e23-6399-4a70-b834-48e1789d33d8",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "50f2d94f-f274-4d68-94e2-448009bc4113",
"NetworkId": "0ca6063f-13bb-4a8f-b6b5-d0885b18e817",
"TaxId": "38a9c148-a420-4b8c-a97e-5c06265ac7e4",
"Amount": 4.0,
"DateFrom": "2026-07-15T04:25:47.4919112Z",
"DateTo": "2026-07-15T04:25:47.4919112Z",
"DisplayDateFrom": "2026/07/15 04:25:47",
"DisplayDateTo": "2026/07/15 04:25:47"
},
{
"Id": "50f2d94f-f274-4d68-94e2-448009bc4113",
"NetworkId": "0ca6063f-13bb-4a8f-b6b5-d0885b18e817",
"TaxId": "38a9c148-a420-4b8c-a97e-5c06265ac7e4",
"Amount": 4.0,
"DateFrom": "2026-07-15T04:25:47.4919112Z",
"DateTo": "2026-07-15T04:25:47.4919112Z",
"DisplayDateFrom": "2026/07/15 04:25:47",
"DisplayDateTo": "2026/07/15 04:25:47"
}
],
"TaxBillingConfiguration": {
"Id": "7e216817-47e0-49c8-bf79-d8bb296b10da",
"TaxId": "46486d88-c193-4033-8086-06a6bae46748",
"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>77cc1d45-f516-407a-8e64-e438eba4cc8c</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>9bff8e23-6399-4a70-b834-48e1789d33d8</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>7e216817-47e0-49c8-bf79-d8bb296b10da</Id>
<TaxId>46486d88-c193-4033-8086-06a6bae46748</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-07-15T04:25:47.4919112Z</DateFrom>
<DateTo>2026-07-15T04:25:47.4919112Z</DateTo>
<Id>50f2d94f-f274-4d68-94e2-448009bc4113</Id>
<NetworkId>0ca6063f-13bb-4a8f-b6b5-d0885b18e817</NetworkId>
<TaxId>38a9c148-a420-4b8c-a97e-5c06265ac7e4</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-07-15T04:25:47.4919112Z</DateFrom>
<DateTo>2026-07-15T04:25:47.4919112Z</DateTo>
<Id>50f2d94f-f274-4d68-94e2-448009bc4113</Id>
<NetworkId>0ca6063f-13bb-4a8f-b6b5-d0885b18e817</NetworkId>
<TaxId>38a9c148-a420-4b8c-a97e-5c06265ac7e4</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>