GET api/Kalmbach/growers/{growerCode}/binInventory
Retrieve a list of current grower-reported bin inventory for the specified grower.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| growerCode |
The code for the grower. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The most recent list of bin inventory for the specified grower.
Collection of BinInventory| Name | Description | Type | Additional information |
|---|---|---|---|
| HouseNumber |
The house number of the grower that the bin is located at. |
integer |
None. |
| BinIdentifier |
The bin identifier for the report. |
string |
None. |
| Quantity |
The quantity reported in pounds. |
decimal number |
None. |
| DateReported |
The date the bin inventory was added. |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"HouseNumber": 1,
"BinIdentifier": "sample string 2",
"Quantity": 3.0,
"DateReported": "2026-03-06T22:34:40.6244564-05:00"
},
{
"HouseNumber": 1,
"BinIdentifier": "sample string 2",
"Quantity": 3.0,
"DateReported": "2026-03-06T22:34:40.6244564-05:00"
}
]