GET boxtype/all
Returns a list of Box Type.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of BoxType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
None. |
|
| Active | boolean |
None. |
|
| Cardless | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"description": "sample string 1",
"active": true,
"cardless": true
},
{
"id": 1,
"description": "sample string 1",
"active": true,
"cardless": true
}
]
application/xml, text/xml
Sample:
<ArrayOfBoxType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
<BoxType>
<Active>true</Active>
<Cardless>true</Cardless>
<Description>sample string 1</Description>
<Id>1</Id>
</BoxType>
<BoxType>
<Active>true</Active>
<Cardless>true</Cardless>
<Description>sample string 1</Description>
<Id>1</Id>
</BoxType>
</ArrayOfBoxType>