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": "36a7502d-c8e4-471f-80cc-7e0933fed7ba",
"NetworkId": "44c0d2db-af45-417b-b6f4-7b72fb90ac8f",
"Code": "sample string 3",
"Description": "sample string 4",
"Type": 1,
"Mode": 1,
"UseMode": 1,
"Active": true,
"Included": true,
"TaxValidities": [
{
"Id": "948aae47-a7f1-4991-969c-486cf1fd6333",
"NetworkId": "831ebeb7-e987-434e-82b2-fcf9360e445b",
"TaxId": "c907c82b-9ecc-4a90-bf15-d312e7da57c8",
"Amount": 4.0,
"DateFrom": "2026-07-08T01:18:24.5123212Z",
"DateTo": "2026-07-08T01:18:24.5123212Z",
"DisplayDateFrom": "2026/07/08 01:18:24",
"DisplayDateTo": "2026/07/08 01:18:24"
},
{
"Id": "948aae47-a7f1-4991-969c-486cf1fd6333",
"NetworkId": "831ebeb7-e987-434e-82b2-fcf9360e445b",
"TaxId": "c907c82b-9ecc-4a90-bf15-d312e7da57c8",
"Amount": 4.0,
"DateFrom": "2026-07-08T01:18:24.5123212Z",
"DateTo": "2026-07-08T01:18:24.5123212Z",
"DisplayDateFrom": "2026/07/08 01:18:24",
"DisplayDateTo": "2026/07/08 01:18:24"
}
],
"TaxBillingConfiguration": {
"Id": "c7212135-c5a5-491e-8b07-74293c461a00",
"TaxId": "6948e8aa-526f-4035-9295-970549f9259b",
"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>36a7502d-c8e4-471f-80cc-7e0933fed7ba</Id>
<Included>true</Included>
<Mode>1</Mode>
<NetworkId>44c0d2db-af45-417b-b6f4-7b72fb90ac8f</NetworkId>
<TaxBillingConfiguration>
<BillingType>64</BillingType>
<Code>sample string 2</Code>
<Description>sample string 3</Description>
<Factor>64</Factor>
<Id>c7212135-c5a5-491e-8b07-74293c461a00</Id>
<TaxId>6948e8aa-526f-4035-9295-970549f9259b</TaxId>
</TaxBillingConfiguration>
<TaxValidities>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-07-08T01:18:24.5123212Z</DateFrom>
<DateTo>2026-07-08T01:18:24.5123212Z</DateTo>
<Id>948aae47-a7f1-4991-969c-486cf1fd6333</Id>
<NetworkId>831ebeb7-e987-434e-82b2-fcf9360e445b</NetworkId>
<TaxId>c907c82b-9ecc-4a90-bf15-d312e7da57c8</TaxId>
</TaxesValidityDto>
<TaxesValidityDto>
<Amount>4</Amount>
<DateFrom>2026-07-08T01:18:24.5123212Z</DateFrom>
<DateTo>2026-07-08T01:18:24.5123212Z</DateTo>
<Id>948aae47-a7f1-4991-969c-486cf1fd6333</Id>
<NetworkId>831ebeb7-e987-434e-82b2-fcf9360e445b</NetworkId>
<TaxId>c907c82b-9ecc-4a90-bf15-d312e7da57c8</TaxId>
</TaxesValidityDto>
</TaxValidities>
<Type>1</Type>
<UseMode>1</UseMode>
</TaxDto>