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

Retrieves a list of scheduled processings.

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 of scheduled processings.

Collection of ProcessingSchedule
NameDescriptionTypeAdditional information
ProcessingDate

The date the process is scheduled.

date

None.

FlockNumber

The number of the flock to be processed.

integer

None.

HouseNumbers

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

Collection of integer

None.

GrowerCode

The code of the grower who has the flock.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProcessingDate": "2026-03-06T22:31:40.5123928-05:00",
    "FlockNumber": 1,
    "HouseNumbers": [
      1,
      2
    ],
    "GrowerCode": "sample string 2"
  },
  {
    "ProcessingDate": "2026-03-06T22:31:40.5123928-05:00",
    "FlockNumber": 1,
    "HouseNumbers": [
      1,
      2
    ],
    "GrowerCode": "sample string 2"
  }
]