GET boxes/all

Returns a list of Boxes.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Boxes
NameDescriptionTypeAdditional 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>