GET api/FlockManagement/chickSchedule/{scheduleWeek}

Gets the chick schedule for the given week.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
scheduleWeek

The week of the schedule to get.

date

Required

Body Parameters

None.

Response Information

Resource Description

The schedule for the week.

ChickSchedule
NameDescriptionTypeAdditional information
Days

A list of days, one for each day of the week, but days without any flocks are not present in this list.

Collection of ChickScheduleDay

None.

TotalChicksExpected

The total number of chicks expected (driven by user input) to be placed for the week.

integer

None.

TotalChicksEstimated

The total number of chicks estimated (driven by historical data) to be placed for the week.

integer

None.

TotalEstimatedDifference

The difference between the expected and estimated quantities.

integer

None.

Notes

Notes for the schedule.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Days": null,
  "TotalChicksExpected": 1,
  "TotalChicksEstimated": 2,
  "TotalEstimatedDifference": 3,
  "Notes": "sample string 4"
}