GET api/FlockManagement/{id}/placements
Gets summarized placement numbers for each house within a flock.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the flock management record. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The placement numbers for the flock management record.
Collection of FlockPlacementSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| FlockManagementID |
The ID of the flock the placement is for. |
integer |
None. |
| GrowerHouseID |
The ID of the house the placement is for. |
integer |
None. |
| PlacedQuantity |
The quantity of chicks placed at the house. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FlockManagementID": 1,
"GrowerHouseID": 2,
"PlacedQuantity": 3
},
{
"FlockManagementID": 1,
"GrowerHouseID": 2,
"PlacedQuantity": 3
}
]