GET api/Tax/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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:55:44.9394636+05:30",
"CreatedBy": "sample string 8"
}
application/xml, text/xml
Sample:
<Tax xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities"> <CreatedBy>sample string 8</CreatedBy> <CreatedDate>2025-12-08T01:55:44.9394636+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>