GET api/FlockGrowerSupplies/{id}

Gets a particular flock grower supply.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the flock grower supply.

integer

Required

Body Parameters

None.

Response Information

Resource Description

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

FlockGrowerSupply
NameDescriptionTypeAdditional information
ID

The ID of the flock grower supply record.

integer

None.

FlockManagementID

The ID of the flock management record.

integer

None.

GrowerSupplyID

The ID of the grower supply record.

integer

None.

Quantity

The quantity of the supply that was given for the flock.

decimal number

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,
  "FlockManagementID": 2,
  "GrowerSupplyID": 3,
  "Quantity": 4.0,
  "UniqueIdentifier": "sample string 5"
}