Farms
This entity represents a farm with the specific attributes. Here's a revised brief description:
name
: This field is a string representing the name of the farm. It serves as an identifier or label for the farm, allowing users or systems to reference it by a human-readable name.type
: Thetype
field is a string indicating the classification or category of the farm.is_active
: A boolean value that denotes whether the farm is currently active. An active status implies that the farm is operational, engaging in agricultural activities or production.
No response body
No content
GET /api/farms/ HTTP/1.1
Host:
Accept: */*
No response body
No content
POST /api/farms/ HTTP/1.1
Host:
Accept: */*
{
"id": 1,
"name": "text",
"type": "ARR",
"is_active": true,
"farm_group": {
"id": 1,
"name": "text"
},
"total_hectares": "text"
}
No response body
No content
GET /api/farms/{id}/ HTTP/1.1
Host:
Accept: */*
No response body
No content
No response body
No content
PATCH /api/farms/{id}/ HTTP/1.1
Host:
Accept: */*
No response body
No content
No response body
No content
GET /api/farms/{id}/parcels/ HTTP/1.1
Host:
Accept: */*
No response body
No content
Last updated