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": "7b025c60-a0c5-42f3-b04b-9e4555b67d6e",
"NetworkId": "3eaeb7fc-7a63-44f2-8ce4-3e52c80c4146",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "3cda3fad-70ee-486e-ae9d-71220d479bfa",
"NetworkId": "c7933851-5121-43a1-b3f3-0af5b92bb0e3",
"TaxId": "5539d30e-1e11-4246-954e-a66676e44470",
"Amount": 4.0,
"DateFrom": "2026-08-26T08:40:41.1709567Z",
"DateTo": "2026-08-26T08:40:41.1709567Z",
"DisplayDateFrom": "2026/08/26 08:40:41",
"DisplayDateTo": "2026/08/26 08:40:41"
},
{
"Id": "3cda3fad-70ee-486e-ae9d-71220d479bfa",
"NetworkId": "c7933851-5121-43a1-b3f3-0af5b92bb0e3",
"TaxId": "5539d30e-1e11-4246-954e-a66676e44470",
"Amount": 4.0,
"DateFrom": "2026-08-26T08:40:41.1709567Z",
"DateTo": "2026-08-26T08:40:41.1709567Z",
"DisplayDateFrom": "2026/08/26 08:40:41",
"DisplayDateTo": "2026/08/26 08:40:41"
}
],
"TaxBillingConfiguration": {
"Id": "ef4db2f7-3987-48b8-ba28-e06b975b23a7",
"TaxId": "9f8c2600-4058-4476-8bdb-cf2837264e69",
"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>7b025c60-a0c5-42f3-b04b-9e4555b67d6e</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>3eaeb7fc-7a63-44f2-8ce4-3e52c80c4146</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>ef4db2f7-3987-48b8-ba28-e06b975b23a7</Id>
<TaxId>9f8c2600-4058-4476-8bdb-cf2837264e69</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-08-26T08:40:41.1709567Z</DateFrom>
<DateTo>2026-08-26T08:40:41.1709567Z</DateTo>
<Id>3cda3fad-70ee-486e-ae9d-71220d479bfa</Id>
<NetworkId>c7933851-5121-43a1-b3f3-0af5b92bb0e3</NetworkId>
<TaxId>5539d30e-1e11-4246-954e-a66676e44470</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-08-26T08:40:41.1709567Z</DateFrom>
<DateTo>2026-08-26T08:40:41.1709567Z</DateTo>
<Id>3cda3fad-70ee-486e-ae9d-71220d479bfa</Id>
<NetworkId>c7933851-5121-43a1-b3f3-0af5b92bb0e3</NetworkId>
<TaxId>5539d30e-1e11-4246-954e-a66676e44470</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>