GET api/Kalmbach/flocks/placementSchedule/{date}

Returns a list of scheduled flock placements.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
date

Typically the beginning of the week for the schedule, but regardless, the schedule returned will be for the week the date falls in.

date

Required

Body Parameters

None.

Response Information

Resource Description

A list of scheduled flock placements.

Collection of PlacementSchedule
NameDescriptionTypeAdditional information
PlacementDate

The date the flock is placed.

date

None.

FlockNumber

The number of the flock.

integer

None.

HouseNumbers

The list of house numbers that the flock is kept in.

Collection of integer

None.

GrowerCode

The code of the grower that has the flock.

string

None.

ChicksExpected

The number of chicks expected from the flock.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PlacementDate": "2026-03-06T22:34:41.1341596-05:00",
    "FlockNumber": 1,
    "HouseNumbers": [
      1,
      2
    ],
    "GrowerCode": "sample string 2",
    "ChicksExpected": 1
  },
  {
    "PlacementDate": "2026-03-06T22:34:41.1341596-05:00",
    "FlockNumber": 1,
    "HouseNumbers": [
      1,
      2
    ],
    "GrowerCode": "sample string 2",
    "ChicksExpected": 1
  }
]