GET api/taxes/list
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TaxData| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
None. |
|
| Name | string |
None. |
|
| Scope | string |
None. |
|
| ScopeAsEnum | TaxScopeEnum |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Code": "sample string 1",
"Name": "sample string 2",
"Scope": "NATIONAL",
"ScopeAsEnum": 0,
"ID": 1
},
{
"Code": "sample string 1",
"Name": "sample string 2",
"Scope": "NATIONAL",
"ScopeAsEnum": 0,
"ID": 1
}
]
text/xml
Sample:
<ArrayOfTaxData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data">
<TaxData>
<ID>1</ID>
<Code>sample string 1</Code>
<Name>sample string 2</Name>
<Scope>NATIONAL</Scope>
<ScopeAsEnum>NATIONAL</ScopeAsEnum>
</TaxData>
<TaxData>
<ID>1</ID>
<Code>sample string 1</Code>
<Name>sample string 2</Name>
<Scope>NATIONAL</Scope>
<ScopeAsEnum>NATIONAL</ScopeAsEnum>
</TaxData>
</ArrayOfTaxData>