GET api/FarmTechs/{farmTechID}/schedule/{scheduleWeek}

Gets the schedule for the farm tech for the given week.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
farmTechID

The ID of the farm tech to get the schedule for.

integer

Required

scheduleWeek

The week of the schedule to get.

date

Required

Body Parameters

None.

Response Information

Resource Description

The schedule for the week.

Collection of FarmTechScheduleItem
NameDescriptionTypeAdditional information
FarmTechID

The ID of the farm tech the schedule is for.

integer

None.

GrowerNumberID

The ID of the grower the schedule is for.

integer

None.

GrowerName

The name of the grower the schedule is for.

string

None.

FlockManagementID

The ID of the flock management record the schedule is for.

integer

None.

FlockNumber

The flock number of the flock the schedule is for.

integer

None.

PreCheckDate

The pre-check date, if it falls within the schedule week. Null otherwise.

date

None.

FirstCheckDate

The first-check date, if it falls within the schedule week. Null otherwise.

date

None.

SecondCheckDate

The second-check date, if it falls within the schedule week. Null otherwise.

date

None.

ThirdCheckDate

The third-check date, if it falls within the schedule week. Null otherwise.

date

None.

AIEstimatedDate

The AI date, if it falls within the schedule week. Null otherwise.

date

None.

WeighAgeDay

The weigh age day. This is the age and day the birds will be weighed. It is in the format of "{0}d-Mon" where the {0} is the age of the bird on the monday of the week

string

None.

Notes

Any notes regarding this schedule.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "FarmTechID": 1,
    "GrowerNumberID": 2,
    "GrowerName": "sample string 3",
    "FlockManagementID": 1,
    "FlockNumber": 1,
    "PreCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "FirstCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "SecondCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "ThirdCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "AIEstimatedDate": "2026-03-06T22:36:01.6583361-05:00",
    "WeighAgeDay": "sample string 4",
    "Notes": "sample string 5"
  },
  {
    "FarmTechID": 1,
    "GrowerNumberID": 2,
    "GrowerName": "sample string 3",
    "FlockManagementID": 1,
    "FlockNumber": 1,
    "PreCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "FirstCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "SecondCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "ThirdCheckDate": "2026-03-06T22:36:01.6583361-05:00",
    "AIEstimatedDate": "2026-03-06T22:36:01.6583361-05:00",
    "WeighAgeDay": "sample string 4",
    "Notes": "sample string 5"
  }
]