GET api/taxing/defaultnonetaxcode
Returns the tax code that should be used when no taxes are desired.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A TaxDetail object describing the tax code.
TaxDetail| Name | Description | Type | Additional information | 
|---|---|---|---|
| Code | 
Code | string | None. | 
| Description | 
Description | string | None. | 
| Rate | 
Tax rate as a percentage | decimal number | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Code": "sample string 1",
  "Description": "sample string 2",
  "Rate": 3.0
}
        application/xml, text/xml
            Sample:
<TaxDetail xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Code>sample string 1</Code> <Description>sample string 2</Description> <Rate>3</Rate> </TaxDetail>