GET api/arreceipttypes/{id}
GET: api/arreceipttypes/{id} Get the item information by the Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ARReceiptTypeViewModel
ARReceiptTypeViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ReceiptTypeId |
|
integer |
None. |
| Description |
|
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"receiptTypeId": 1,
"description": "sample string 2"
}
application/xml, text/xml
Sample:
<ARReceiptTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <Description>sample string 2</Description> <ReceiptTypeId>1</ReceiptTypeId> </ARReceiptTypeViewModel>