GET api/Tax
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Tax| Name | Description | Type | Additional information |
|---|---|---|---|
| TaxId | integer |
None. |
|
| TaxName | string |
None. |
|
| DisplayName | string |
None. |
|
| Rate | decimal number |
None. |
|
| TaxTypeId | integer |
None. |
|
| TaxStatusId | integer |
None. |
|
| CreatedDate | date |
Data type: DateTime |
|
| CreatedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TaxId": 1,
"TaxName": "sample string 2",
"DisplayName": "sample string 3",
"Rate": 4.1,
"TaxTypeId": 5,
"TaxStatusId": 6,
"CreatedDate": "2025-12-08T01:54:03.7363506+05:30",
"CreatedBy": "sample string 8"
},
{
"TaxId": 1,
"TaxName": "sample string 2",
"DisplayName": "sample string 3",
"Rate": 4.1,
"TaxTypeId": 5,
"TaxStatusId": 6,
"CreatedDate": "2025-12-08T01:54:03.7363506+05:30",
"CreatedBy": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfTax xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
<Tax>
<CreatedBy>sample string 8</CreatedBy>
<CreatedDate>2025-12-08T01:54:03.7363506+05:30</CreatedDate>
<DisplayName>sample string 3</DisplayName>
<Rate>4.1</Rate>
<TaxId>1</TaxId>
<TaxName>sample string 2</TaxName>
<TaxStatusId>6</TaxStatusId>
<TaxTypeId>5</TaxTypeId>
</Tax>
<Tax>
<CreatedBy>sample string 8</CreatedBy>
<CreatedDate>2025-12-08T01:54:03.7363506+05:30</CreatedDate>
<DisplayName>sample string 3</DisplayName>
<Rate>4.1</Rate>
<TaxId>1</TaxId>
<TaxName>sample string 2</TaxName>
<TaxStatusId>6</TaxStatusId>
<TaxTypeId>5</TaxTypeId>
</Tax>
</ArrayOfTax>