GET api/FlockManagement/truckScaleReadings

Gets truck scale readings for all open flocks, as well as those up to four weeks past their processing date.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The truck scale readings.

Collection of TruckScaleReading
NameDescriptionTypeAdditional information
ID

The ID of the record.

integer

None.

TicketNumber

The ticket number.

integer

None.

CardNumber

The card number.

string

None.

TruckNumber

The truck number.

string

None.

TrailerNumber

The trailer number.

string

None.

Driver

The name of the driver.

string

None.

FlockNumber

The flock number (from flock management in Chick Redux) being brought in.

string

None.

Grower

The name of the grower.

string

None.

FarmTechID

The farm tech associated with the grower of the flock.

integer

None.

Weather

The weather at the time.

string

None.

BirdCount

The number of birds being delivered.

decimal number

None.

GrossWeight

The gross weight (truck weight w/chickens) of the truck.

decimal number

None.

TareWeight

The tare weight (empty / unloaded) of the truck.

decimal number

None.

NetWeight

The net weight (gross - tare) of the truck.

decimal number

None.

WeighInDate

The weigh in date.

date

None.

WeighOutDate

The weight out date.

date

None.

Checksum

The checksum of the record. Used internally to read data off the physical scale.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "TicketNumber": 2,
    "CardNumber": "sample string 3",
    "TruckNumber": "sample string 4",
    "TrailerNumber": "sample string 5",
    "Driver": "sample string 6",
    "FlockNumber": "sample string 7",
    "Grower": "sample string 8",
    "FarmTechID": 9,
    "Weather": "sample string 10",
    "BirdCount": 11.0,
    "GrossWeight": 12.0,
    "TareWeight": 13.0,
    "NetWeight": 14.0,
    "WeighInDate": "2026-03-06T22:33:09.9091854-05:00",
    "WeighOutDate": "2026-03-06T22:33:09.9091854-05:00",
    "Checksum": "sample string 17"
  },
  {
    "ID": 1,
    "TicketNumber": 2,
    "CardNumber": "sample string 3",
    "TruckNumber": "sample string 4",
    "TrailerNumber": "sample string 5",
    "Driver": "sample string 6",
    "FlockNumber": "sample string 7",
    "Grower": "sample string 8",
    "FarmTechID": 9,
    "Weather": "sample string 10",
    "BirdCount": 11.0,
    "GrossWeight": 12.0,
    "TareWeight": 13.0,
    "NetWeight": 14.0,
    "WeighInDate": "2026-03-06T22:33:09.9091854-05:00",
    "WeighOutDate": "2026-03-06T22:33:09.9091854-05:00",
    "Checksum": "sample string 17"
  }
]