GET api/FlockGrowerSupplies
Gets all flock grower supplies.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of flock grower supplies.
Collection of FlockGrowerSupply| Name | Description | Type | Additional 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"
},
{
"ID": 1,
"FlockManagementID": 2,
"GrowerSupplyID": 3,
"Quantity": 4.0,
"UniqueIdentifier": "sample string 5"
}
]