GET api/GrowerHouses/{id}
Gets a particular grower house record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the grower house record. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The grower house with the specified ID, or a 404 response if the grower house doesn't exist.
GrowerHouse| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the grower house. |
integer |
None. |
| GrowerNumberID |
The ID of the grower the house is for. |
integer |
None. |
| HouseNumber |
The house number that identifies the house. |
integer |
None. |
| IsActive |
Whether or not the house is currently active, i.e. able to accept flocks. |
boolean |
None. |
| SquareFeet |
The size of the house. |
integer |
None. |
| DateStarted |
The date the house started accepting flocks. |
date |
None. |
| IsNewHouse |
Whether or not the house is newer construction. |
boolean |
None. |
| Mileage |
The mileage from GPI to the house. |
integer |
None. |
| IsFireFanRequired |
Whether or not a fire fan is required at the house. |
boolean |
None. |
| PassesWaterQuality |
Whether or not the house passes water quality standards. |
boolean |
None. |
| WaterSupplyID |
The type of water supply at the house. |
integer |
None. |
| FuelTypeID |
The type of fuel supply at the house. |
integer |
None. |
| HeatingSystemID |
The type of heating system at the house. |
integer |
None. |
| PowerSourceID |
The type of power source at the house. |
integer |
None. |
| VentilationID |
The type of ventilation system at the house. |
integer |
None. |
| CeilingHeight |
The ceiling height. |
decimal number |
None. |
| WaterMistingID |
The type of water misting system at the house. |
integer |
None. |
| HasCurtainAlarm |
States whether or not the house has a curtain alarm. |
boolean |
None. |
| HasOtherAlarms |
States whether or not the house has any other alarms. |
boolean |
None. |
| BroodingSize |
The brooding size. |
decimal number |
None. |
| FeederSystemTypeID |
The type of feeder system at the house. |
integer |
None. |
| ContractExpiration |
The date the contract between the grower and GPI for this house expires. |
date |
None. |
| NewHouseExpirationDate |
The date the contract between the grower and GPI for this house expires. |
date |
None. |
| Address1 |
The street address 1 of the house. |
string |
None. |
| Address2 |
The street address 2 of the house. |
string |
None. |
| City |
The city where the house is located. |
string |
None. |
| State |
The state where the house is located. |
string |
None. |
| ZipCode |
The zip where the house is located. |
string |
None. |
| HasDeadBirdDisposalProgram |
States whether or not there is a bird disposal program in place at the house. |
boolean |
None. |
| HasManureManagementPlan |
States whether or not there is a manure management program in place at the house. |
boolean |
None. |
| ParticipatesInFarmMonitoring |
States whether or not the house is participating in farm monitoring. |
boolean |
None. |
| GrowerHouseTypeID |
The ID of the grower house type for this house. |
integer |
None. |
| LastAuditID |
The ID of the last audit performed for this grower house. |
integer |
None. |
| LastAuditDate |
The last date an audit was performed for this grower house. |
date |
None. |
| LastAuditComplianceFixByDate |
The date a grower must fix any non-compliances for this grower house that were given during an audit. |
date |
None. |
| LastAuditComplianceResolutionDate |
The date the grower fixed any non-compliances for this grower house that were given during an audit. |
date |
None. |
| AuditPdfGeneratedDate |
The date the audit pdf for a grower house was generated. |
date |
None. |
Response Formats
application/json, text/json
{
"id": 1,
"GrowerNumberID": 2,
"HouseNumber": 1,
"IsActive": true,
"SquareFeet": 4,
"DateStarted": "2026-03-06T22:33:10.9316893-05:00",
"IsNewHouse": true,
"Mileage": 7,
"IsFireFanRequired": true,
"PassesWaterQuality": true,
"WaterSupplyID": 10,
"FuelTypeID": 11,
"HeatingSystemID": 12,
"PowerSourceID": 13,
"VentilationID": 14,
"CeilingHeight": 15.0,
"WaterMistingID": 16,
"HasCurtainAlarm": true,
"HasOtherAlarms": true,
"BroodingSize": 19.0,
"FeederSystemTypeID": 20,
"ContractExpiration": "2026-03-06T22:33:10.9316893-05:00",
"NewHouseExpirationDate": "2026-03-06T22:33:10.9316893-05:00",
"Address1": "sample string 23",
"Address2": "sample string 24",
"City": "sample string 25",
"State": "sample string 26",
"ZipCode": "sample string 27",
"HasDeadBirdDisposalProgram": true,
"HasManureManagementPlan": true,
"ParticipatesInFarmMonitoring": true,
"GrowerHouseTypeID": 31,
"LastAuditID": 1,
"LastAuditDate": "2026-03-06T22:33:10.9316893-05:00",
"LastAuditComplianceFixByDate": "2026-03-06T22:33:10.9316893-05:00",
"LastAuditComplianceResolutionDate": "2026-03-06T22:33:10.9316893-05:00",
"AuditPdfGeneratedDate": "2026-03-06T22:33:10.9316893-05:00"
}