GET api/FlockManagement

Gets all flock management records.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of flock management records.

Collection of FlockManagement
NameDescriptionTypeAdditional information
ID

The ID of the flock management record.

integer

None.

GrowerNumberID

The ID of the grower this flock record is for.

integer

None.

FlockNumber

The number that uniquely identifies the flock.

integer

None.

PlacementDate

The date the flock was placed at a farm.

date

None.

ChicksExpected

The number of chicks that are expected to be placed at the farm.

integer

None.

ChicksPlaced

The number of chicks that were actually placed at the farm.

integer

None.

IsProcessingComplete

Whether or not processing for this flock is complete. In other words, the flock has been placed, has come back, the birds have been processed and the flock is essentially finished.

boolean

None.

IsSmallBirds

Whether or not this flock is comprised of small birds.

boolean

None.

PlacementNotes

Any notes regarding the placement of the birds when they go to the farm.

string

None.

FarmTechNotes

Any notes specifically for the farm techs for when they go to do inspections of the flock at the farm.

string

None.

GrowoutNotes

Any general notes about the flock while they have been grown out at the farm.

string

None.

BreedType

The type of birds in the flock.

string

None.

PlacementDoa

The number of birds that were dead on arrival during placement.

integer

None.

LastWeighedDate

The date of the last weighing of the birds while at the farm.

date

None.

LastWeight

The weight of the birds at the last weigh date.

decimal number

None.

AITestDate

The date the AI (disease) test was performed on the birds.

date

None.

LoadOrder

The load order for the placement. The load order is just the order in which the trucks carrying the chicks will go from farm to farm in a given day.

string

None.

Modified

The date the flock was last modified.

date

None.

Created

The date the flock was created.

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "GrowerNumberID": 2,
    "FlockNumber": 3,
    "PlacementDate": "2026-03-06T22:35:58.0021986-05:00",
    "ChicksExpected": 1,
    "ChicksPlaced": 1,
    "IsProcessingComplete": true,
    "IsSmallBirds": true,
    "PlacementNotes": "sample string 6",
    "FarmTechNotes": "sample string 7",
    "GrowoutNotes": "sample string 8",
    "BreedType": "sample string 9",
    "PlacementDoa": 1,
    "LastWeighedDate": "2026-03-06T22:35:58.0021986-05:00",
    "LastWeight": 1.0,
    "AITestDate": "2026-03-06T22:35:58.0021986-05:00",
    "LoadOrder": "sample string 10",
    "Modified": "2026-03-06T22:35:58.0021986-05:00",
    "Created": "2026-03-06T22:35:58.0021986-05:00"
  },
  {
    "ID": 1,
    "GrowerNumberID": 2,
    "FlockNumber": 3,
    "PlacementDate": "2026-03-06T22:35:58.0021986-05:00",
    "ChicksExpected": 1,
    "ChicksPlaced": 1,
    "IsProcessingComplete": true,
    "IsSmallBirds": true,
    "PlacementNotes": "sample string 6",
    "FarmTechNotes": "sample string 7",
    "GrowoutNotes": "sample string 8",
    "BreedType": "sample string 9",
    "PlacementDoa": 1,
    "LastWeighedDate": "2026-03-06T22:35:58.0021986-05:00",
    "LastWeight": 1.0,
    "AITestDate": "2026-03-06T22:35:58.0021986-05:00",
    "LoadOrder": "sample string 10",
    "Modified": "2026-03-06T22:35:58.0021986-05:00",
    "Created": "2026-03-06T22:35:58.0021986-05:00"
  }
]