GET api/FlockPrecheckImages

Gets all flock precheck images.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of flock precheck images.

Collection of FlockPrecheckImage
NameDescriptionTypeAdditional information
ID

The ID of the record.

integer

None.

FlockPrecheckID

The ID of the flock precheck the image is for.

integer

None.

Image

The raw image.

Collection of byte

None.

DateTaken

The date the image was taken.

date

None.

UniqueIdentifier

Uniquely identifies this record. This ID is assigned by the individual tablets using the farm tech app. That way, records created from the tablets have a 100% globally unique identifier that allows them to determine if a record on their device already exists on the server.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "FlockPrecheckID": 2,
    "Image": "QEA=",
    "DateTaken": "2026-03-06T22:30:18.8695115-05:00",
    "UniqueIdentifier": "sample string 4"
  },
  {
    "ID": 1,
    "FlockPrecheckID": 2,
    "Image": "QEA=",
    "DateTaken": "2026-03-06T22:30:18.8695115-05:00",
    "UniqueIdentifier": "sample string 4"
  }
]