GET api/taxinggroup
Returns all Taxing Groups
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of TaxingGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| TaxingGroupId |
Sedona internal autonumber for the Taxing Group record |
integer |
None. |
| TaxingGroupCode |
Abbreviated Taxing Group |
string |
String length: inclusive between 0 and 25 |
| Description |
Full description of Taxing Group |
string |
String length: inclusive between 0 and 50 |
| Inactive | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TaxingGroupId": 1,
"TaxingGroupCode": "sample string 2",
"Description": "sample string 3",
"Inactive": true
},
{
"TaxingGroupId": 1,
"TaxingGroupCode": "sample string 2",
"Description": "sample string 3",
"Inactive": true
}
]
application/xml, text/xml
Sample:
<ArrayOfTaxingGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
<TaxingGroup>
<Description>sample string 3</Description>
<Inactive>true</Inactive>
<TaxingGroupCode>sample string 2</TaxingGroupCode>
<TaxingGroupId>1</TaxingGroupId>
</TaxingGroup>
<TaxingGroup>
<Description>sample string 3</Description>
<Inactive>true</Inactive>
<TaxingGroupCode>sample string 2</TaxingGroupCode>
<TaxingGroupId>1</TaxingGroupId>
</TaxingGroup>
</ArrayOfTaxingGroup>