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": "47d7eca0-b9eb-477f-84ce-2c793ff91486",
"NetworkId": "f4fb5725-e17e-4468-868b-53787e40db6c",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "b7b1ae85-ec63-4a03-8b7c-421a9da88276",
"NetworkId": "2edf4aa1-7b50-4996-aa92-3e50eed54705",
"TaxId": "e82d1b72-8a41-45f5-9376-52f927b082df",
"Amount": 4.0,
"DateFrom": "2026-09-02T09:15:31.8913748Z",
"DateTo": "2026-09-02T09:15:31.8913748Z",
"DisplayDateFrom": "2026/09/02 09:15:31",
"DisplayDateTo": "2026/09/02 09:15:31"
},
{
"Id": "b7b1ae85-ec63-4a03-8b7c-421a9da88276",
"NetworkId": "2edf4aa1-7b50-4996-aa92-3e50eed54705",
"TaxId": "e82d1b72-8a41-45f5-9376-52f927b082df",
"Amount": 4.0,
"DateFrom": "2026-09-02T09:15:31.8913748Z",
"DateTo": "2026-09-02T09:15:31.8913748Z",
"DisplayDateFrom": "2026/09/02 09:15:31",
"DisplayDateTo": "2026/09/02 09:15:31"
}
],
"TaxBillingConfiguration": {
"Id": "301c1660-f2f3-4f69-bbc2-af724c47941f",
"TaxId": "b1132800-6b2d-440d-9702-7d6a09e9ead9",
"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>47d7eca0-b9eb-477f-84ce-2c793ff91486</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>f4fb5725-e17e-4468-868b-53787e40db6c</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>301c1660-f2f3-4f69-bbc2-af724c47941f</Id>
<TaxId>b1132800-6b2d-440d-9702-7d6a09e9ead9</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-09-02T09:15:31.8913748Z</DateFrom>
<DateTo>2026-09-02T09:15:31.8913748Z</DateTo>
<Id>b7b1ae85-ec63-4a03-8b7c-421a9da88276</Id>
<NetworkId>2edf4aa1-7b50-4996-aa92-3e50eed54705</NetworkId>
<TaxId>e82d1b72-8a41-45f5-9376-52f927b082df</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-09-02T09:15:31.8913748Z</DateFrom>
<DateTo>2026-09-02T09:15:31.8913748Z</DateTo>
<Id>b7b1ae85-ec63-4a03-8b7c-421a9da88276</Id>
<NetworkId>2edf4aa1-7b50-4996-aa92-3e50eed54705</NetworkId>
<TaxId>e82d1b72-8a41-45f5-9376-52f927b082df</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>