GET boxes/{id}
Find a box by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Boxes| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Box | integer |
None. |
|
| Box_desc | string |
None. |
|
| Planid | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"box": 1,
"box_desc": "sample string 1",
"planid": 1
}
application/xml, text/xml
Sample:
<Boxes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <Box>1</Box> <Box_desc>sample string 1</Box_desc> <Id>1</Id> <Planid>1</Planid> </Boxes>