GET api/FarmTechs/{id}
Gets a particular farm tech.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the farm tech. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The farm tech with the specified ID, or a 404 response if the tech doesn't exist.
FarmTech| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID of the record. |
integer |
None. |
| Initials |
The farm tech's initials. |
string |
None. |
| FirstName |
The farm tech's first name. |
string |
None. |
| MiddleInitial |
The farm tech's middle initial. |
string |
None. |
| LastName |
The farm tech's last name. |
string |
None. |
| IsActive |
Whether or not the farm tech is active. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Initials": "sample string 2",
"FirstName": "sample string 3",
"MiddleInitial": "sample string 4",
"LastName": "sample string 5",
"IsActive": true
}