GET api/TaxCodes/SpecificID/{id}
Retrieves a singular tax code class for a specific Eskimo ID
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
EskimoClassLibraries.clsTaxCodeName | Description | Type | Additional information |
---|---|---|---|
TaxID |
The Eskimo ID |
integer |
Required |
TaxDescription |
A short Description of the Rate. i.e. Zero Rated, Standard Rate, Exempt. |
string |
None. |
TaxRate |
The Tax Rate as a percentage i.e. 17.5 or 20.0 |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "TaxID": 1, "TaxDescription": "sample string 2", "TaxRate": 3.0 }
application/xml, text/xml
Sample:
<clsTaxCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EskimoClassLibraries"> <TaxDescription>sample string 2</TaxDescription> <TaxID>1</TaxID> <TaxRate>3</TaxRate> </clsTaxCode>