GET api/Bins?date={date}
List of Bins
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| date |
Select only bins added after specific date |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of _apiBin| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| BinTypeId | integer |
None. |
|
| Number | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"BinTypeId": 2,
"Number": "sample string 3"
},
{
"Id": 1,
"BinTypeId": 2,
"Number": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOf_apiBin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WasteMart.Models">
<_apiBin>
<BinTypeId>2</BinTypeId>
<Id>1</Id>
<Number>sample string 3</Number>
</_apiBin>
<_apiBin>
<BinTypeId>2</BinTypeId>
<Id>1</Id>
<Number>sample string 3</Number>
</_apiBin>
</ArrayOf_apiBin>