GET api/FlockInspectionImages/{id}

Gets a particular flock inspection image.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the inspection image.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The image with the specified ID, or a 404 response if the image doesn't exist.

FlockInspectionImage
NameDescriptionTypeAdditional information
ID

The ID of the record.

integer

None.

FlockInspectionID

The ID of the flock inspection 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,
  "FlockInspectionID": 2,
  "Image": "QEA=",
  "DateTaken": "2026-03-06T22:32:59.1644196-05:00",
  "UniqueIdentifier": "sample string 4"
}