GET api/taxinggroup/{id}
Returns the specified Taxing Group
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TaxingGroupName | 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 }
application/xml, text/xml
Sample:
<TaxingGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models"> <Description>sample string 3</Description> <Inactive>true</Inactive> <TaxingGroupCode>sample string 2</TaxingGroupCode> <TaxingGroupId>1</TaxingGroupId> </TaxingGroup>