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