GET api/PumpAndroid/GetTax/{code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of Tax| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| TaxPer | integer |
None. |
|
| SalesNo | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"TaxPer": 2,
"SalesNo": 3
},
{
"Name": "sample string 1",
"TaxPer": 2,
"SalesNo": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfTax xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PumpAndroid.Models">
<Tax>
<Name>sample string 1</Name>
<SalesNo>3</SalesNo>
<TaxPer>2</TaxPer>
</Tax>
<Tax>
<Name>sample string 1</Name>
<SalesNo>3</SalesNo>
<TaxPer>2</TaxPer>
</Tax>
</ArrayOfTax>