GET api/irs1099Classes/{id}
Get IRS class by id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Irs1099AmountClassViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id |
integer |
None. |
| Code |
Box number for a 1099 |
string |
None. |
| Description |
Class description |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"code": "sample string 2",
"description": "sample string 3"
}
application/xml, text/xml
Sample:
<Irs1099AmountClassViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Controllers.TAX.Models"> <Code>sample string 2</Code> <Description>sample string 3</Description> <Id>1</Id> </Irs1099AmountClassViewModel>