GET api/Purchasing/GetTaxRates
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of POTaxRate| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Description | string |
None. |
|
| IsDefault | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Description": "sample string 2",
"IsDefault": true
},
{
"ID": 1,
"Description": "sample string 2",
"IsDefault": true
}
]
application/xml, text/xml
Sample:
<ArrayOfPOTaxRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CrowsNest.Api">
<POTaxRate>
<Description>sample string 2</Description>
<ID>1</ID>
<IsDefault>true</IsDefault>
</POTaxRate>
<POTaxRate>
<Description>sample string 2</Description>
<ID>1</ID>
<IsDefault>true</IsDefault>
</POTaxRate>
</ArrayOfPOTaxRate>