Field Boundary Management Endpoints

About

Here we list all the available endpoints from Fields API. For easily calling them, we recommend using Leaf's Postman collection.

All HTTP methods should be prepended by this service's endpoint:

https://api.withleaf.io/services/fields/api

There is a REST resources section if you want to check it out.

This service has the following endpoints available:

DescriptionEndpoints
Get all fieldsGET /fields
Get a fieldGET /users/{id}/fields/{id}
Create a fieldPOST /users/{id}/fields
Update a fieldPATCH /users/{id}/fields/{id}
Get all operation files of a field (deprecated)GET /users/{leafUserId}/fields/{fieldId}/operations
Get all operation files of a fieldGET /users/{leafUserId}/fields/{fieldId}/operations/files
Get an operation file of a field (deprecated)GET /users/{leafUserId}/fields/{fieldId}/operations/{fileId}
Get an operation file of a fieldGET /users/{leafUserId}/fields/{fieldId}/operations/files/{fileId}
Get fields by geometry (deprecated)POST /fields/query/intersects
Get fields by geometryPOST /users/{leafUserId}/fields/intersects
Get intersection of fieldsPOST /users/{id}/fields/intersect
Delete a fieldDELETE /users/{id}/fields/{id}
Get all boundaries from fieldGET users/{leafUserId}/fields/{fieldId}/boundaries
Get a boundary from fieldGET users/{leafUserId}/fields/{fieldId}/boundaries/{boundaryId}
Get active boundary from fieldGET users/{leafUserId}/fields/{fieldId}/boundary
Update active boundary from fieldPUT users/{leafUserId}/fields/{fieldId}/boundary
Get all farmsGET /farms
Get a farmGET /users/{id}/farms/{id}
Create a farmPOST /users/{leafUserId}/farms
Update a farmPUT /users/{leafUserId}/farms/{id}
Get all growersGET /growers
Get a growerGET /users/{leafUserId}/growers/{id}
Create a growerPOST /users/{leafUserId}/growers
Update a growerPUT /users/{leafUserId}/growers/{id}

Fields

Get all fields

 GET /fields

Gets a paged list of Fields. It is possible to filter the results by passing some query parameters.

  • type, only matches fields with this type (string).
  • farmId, only matches fields from this farmId (integer).
  • provider, only matches fields from this provider (string).
  • leafUserId, only matches fields from this user (string).
  • page, an integer specifying the page being fetched.
  • size, an integer specifying the size of the page (defaults to 20).

These last two parameters are used exclusively for paging through results.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/fields'

Response

A JSON array containing Fields.

[
{
"id": "1a952614-3673-4d1e-b677-1f7224339ec6",
"leafUserId": "58800d61-91ac-4922-8e2a-f0216b9f052a",
"area": {
"value": 785229.21674535141,
"unit": "ha"
},
"boundaries": [
"279b52d5-ec6d-4459-a06a-4f47ffab0659"
],
"providerName": "JohnDeere",
"providerId": 2,
"providerFieldId": "b96ed268-728f-489e-b928-9d3e70082be4",
"providerBoundaryId": "125fc49f-7e75-43fe-89f2-af976addb392",
"providerFieldName": "The_Field_field",
"organizationId": "428214",
"type": "ORIGINAL",
"createdTime": "2021-10-20T21:21:24.732030Z",
"updatedTime": "2021-11-03T01:34:15.154051Z",
"farmId": 3746117,
"mergedFieldId": "f97c5bbc-2dbf-4400-8d59-39eba37f8847",
"sources": [],
"legacy": true
}
]

Get a field

 GET /users/{id}/fields/{id}

Gets a single Field by its id.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{id}'

Response

A single Field as a JSON object.

Create a field

 POST /users/{leafUserId}/fields

Creates a Field for the user leafUserId. A request body must be provided containing the entry "geometry" object which need to have the properties "type" and "coordinates". The geometry represents the boundaries of the Field being created as a GeoJSON geometry ("type" property must be a "MultiPolygon").

Consider that you can also set the id and name properties (both of them optional) in the request body. If no id is provided an UUID will be generated and this property can not be updated.

Request body example:

{
"id": "string", // optional
"name": "string", // optional
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-93.48821327980518, 41.77137549568163],
[-93.48817333680519, 41.77143534378164],
[-93.48821327390516, 41.76068857977987],
[-93.48821327980518, 41.77137549568163]
]
]
]
}
}

You can try some requests on the create fields API using the examples below.

curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "geometry": { "type: "MultiPolygon", "coordinates": [...] } }'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/'

Response

You can expect a response with a JSON Object containing the following properties.

{
"id": "string",
"leafUserId": "string",
"area": {
"value": float,
"unit": "ha"
},
"boundaries": [
"UUID"
],
"geometry": {
"type": "MultiPolygon",
"coordinates": [...]
},
"type": "string",
"createdTime": "timestamp",
"updatedTime": "timestamp"
}

Update a Field

 PATCH /users/{leafUserId}/fields/{id}

Update the Field by "id" for the user "leafUserId". The request body accepts updatable field properties like "name" to update the field name, "farmId" to update the related Farm of the Field and "geometry", which represents the boundaries of the Field as a GeoJSON geometry (it must be a "MultiPolygon").

Request body example:

{
"name": "updatedName",
"farmId": 1,
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-93.48821327980518, 41.77137549568163],
[-93.48817333680519, 41.77143534378164],
[-93.48821327390516, 41.76068857977987],
[-93.48821327980518, 41.77137549568163]
]
]
]
}
}
curl -X PATCH \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "name": "updatedName", "farmId": 1, "geometry": { "type: "MultiPolygon", "coordinates": [...] } }'
'https://api.withleaf.io/services/fields/api/fields/users/{leafUserId}/{id}'

Response

A Field as a JSON object.

Get all operation files of a field (deprecated)

Use this endpoint instead

 GET /users/{leafUserId}/fields/{fieldId}/operations

Gets a paged list of all operation files of the Field and Leaf User specified in the URL.

It is possible to filter the results by passing some query parameters. They are listed below.

Parameter (to filter by)TypeDescription
operationTypeString "harvested", "planted", "applied" or "other"retrieve operations of given type
providerString "CNHI", "JohnDeere", "Trimble" or "ClimateFieldView"retrieve operations of given provider
originString "provider", "automerged", "merged" or "uploaded"retrieve operations of given origin
cropString name of the crop, like "corn" or "soybeans". Entire crop list available hereretrieve operations with this crop.
startTimeISO 8601 datetime formatretrieve operations that started after this date
endTimeISO 8601 datetime formatretrieve operations that ended before this date

You can also pass some parameters used exclusively for paging through results. They are:

  • page, an integer specifying the page being fetched (default is 0)
  • size, an integer specifying the size of the page (default is 20, max is 100)

Request

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/operations'

Response

[
{
"crops": [
"string"
],
"endTime": "2022-05-11T13:11:57.994Z",
"id": "string",
"leafUserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"operationType": "other",
"origin": "automerged",
"provider": "Other",
"providerFileId": "string",
"startTime": "2022-05-11T13:11:57.994Z",
"varieties": [
"string"
]
}
]

Get all operation files of a field

 GET /users/{leafUserId}/fields/{fieldId}/operations/files

Gets a paged list of all operation files of the Field and Leaf User specified in the URL.

It is possible to filter the results by passing some query parameters. They are listed below.

Parameter (to filter by)TypeDescription
operationTypeString "harvested", "planted", "applied" or "other"retrieve operations of given type
providerString "CNHI", "JohnDeere", "Trimble" or "ClimateFieldView"retrieve operations of given provider
originString "provider", "automerged", "merged" or "uploaded"retrieve operations of given origin
cropString name of the crop, like "corn" or "soybeans". Entire crop list available hereretrieve operations with this crop.
startTimeISO 8601 datetime formatretrieve operations that started after this date
endTimeISO 8601 datetime formatretrieve operations that ended before this date

You can also pass some parameters used exclusively for paging through results. They are:

  • page, an integer specifying the page being fetched (default is 0)
  • size, an integer specifying the size of the page (default is 20, max is 100)

Request

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/operations/files'

Response

[
{
"crops": [
"string"
],
"endTime": "2022-05-11T13:11:57.994Z",
"id": "string",
"leafUserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"operationType": "other",
"origin": "automerged",
"provider": "Other",
"providerFileId": "string",
"startTime": "2022-05-11T13:11:57.994Z",
"varieties": [
"string"
]
}
]

Get an operation file of a field (deprecated)

Use this endpoint instead

 GET /users/{leafUserId}/fields/{fieldId}/operations/{fileId}

Gets a single Operation File of a field by its id.

Request

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/operations/{id}'

Response

[
{
"crops": [
"string"
],
"endTime": "2022-05-11T13:11:57.994Z",
"id": "string",
"leafUserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"operationType": "other",
"origin": "automerged",
"provider": "Other",
"providerFileId": "string",
"startTime": "2022-05-11T13:11:57.994Z",
"varieties": [
"string"
]
}
]

Get an operation file of a field

 GET /users/{leafUserId}/fields/{fieldId}/operations/files/{fileId}

Gets a single Operation File of a field by its id.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/operations/files/{id}'

Response

A single Operation File.

{
"crops": [
"string"
],
"endTime": "2022-05-11T13:13:01.548Z",
"id": "string",
"leafUserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"operationType": "other",
"origin": "automerged",
"provider": "Other",
"providerFileId": "string",
"startTime": "2022-05-11T13:13:01.548Z",
"varieties": [
"string"
]
}

Get Fields by geometry (deprecated)

 POST /fields/query/intersects

Use this endpoint instead.

Gets a list of fields that intersect with the GeoJSON MultiPolygon sent in the request body.

curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "geometry": { "type: "MultiPolygon", "geometry": [...] } }'
'https://api.withleaf.io/services/fields/api/fields/query/intersects'

Response

A JSON list of Fields.

[
{
"id": "id",
"leafUserId": "uuid",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-89.84388470649719,39.71943436012731],
[-89.84392762184143,39.72439389620628],
[-89.83936786651611,39.725392361998416],
[-89.83928203582764,39.71951688444436],
[-89.84388470649719,39.71943436012731]
]
]
]
},
"type": "MERGED",
"sources": []
}
]

Get Fields by geometry

 POST /users/{leafUserId}/fields/intersects

Gets a list of fields that intersect with the GeoJSON MultiPolygon sent in the request body. The minimum intersection percentage is given by intersectionThreshold and can range from 0.01% to 100%, its default value is 0.01.

How it works

The intersectionThreshold can be compared with the "intersection by field" ratio or the "intersection by geometry" ratio. Whichever is satisfied first.

Here we have a sample for a field with 100 area unit and a geometry with 10 area unit:

How it works

So, in this case, if the intersectionThreshold were 3, then the condition would be satisfied and the field would be returned, but if the value was greater than 50, then it would not satisfy the condition, as 50% is the highest intersection value:

intersectionThreshold (%)satisfied
3
5
37
50
75
100
curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "geometry": { "type: "MultiPolygon", "coordinates": [...] }, "intersectionThreshold": 25.7 }'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/intersects'

Response

A JSON list of Fields.

[
{
"id": "id",
"leafUserId": "uuid",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-89.84388470649719,39.71943436012731],
[-89.84392762184143,39.72439389620628],
[-89.83936786651611,39.725392361998416],
[-89.83928203582764,39.71951688444436],
[-89.84388470649719,39.71943436012731]
]
]
]
},
"type": "MERGED",
"sources": []
}
]

Get intersection of fields

 POST /users/{id}/fields/intersect

Gets a GeoJSON MultiPolygon corresponding to the intersection of the Fields specified by the given id's. Such Field id's goes in a list, in the request body.

curl --location --request \
POST 'https://api.withleaf.io/services/fields/api/users/{id}/fields/intersect' \
--header 'Authorization: Bearer YOUR_LEAF_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '["id1", "id2"]'

Response

A JSON in the format of a GeoJSON geometry.

{
"type": "MultiPolygon",
"coordinates": [
[
[
[-89.84388470649719,39.71943436012731],
[-89.84392762184143,39.72439389620628],
[-89.83936786651611,39.725392361998416],
[-89.83928203582764,39.71951688444436],
[-89.84388470649719,39.71943436012731]
]
]
]
}

Delete a field

 DELETE /users/{id}/fields/{id}

Deletes the field with the given id.

tip

Fields created by a provider cannot be deleted on Leaf side.

Boundaries

Get all boundaries from field

 GET /users/{leafUserId}/fields/{fieldId}/boundaries

Gets a list of boundaries from a field.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{id}/boundaries'

Response

A list of Boundary as a JSON object.

Get a boundary from field

 GET /users/{leafUserId}/fields/{fieldId}/boundaries/{boundaryId}

Gets a single Boundary from a field by its id.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/boundaries/{boundaryId}'

Response

A single Boundary as a JSON object.

Get active boundary from field

 GET /users/{leafUserId}/fields/{fieldId}/boundary

Gets the active Boundary from a field.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/boundary'

Response

A single Boundary as a JSON object.

Update active boundary from field

 PUT /users/{leafUserId}/fields/{fieldId}/boundary

Updates the active boundary of field fieldId. The previous active boundary is not deleted, but set as inactive.

Request body example:

{
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-93.48821327980518, 41.77137549568163],
[-93.48817333680519, 41.77143534378164],
[-93.48821327390516, 41.76068857977987],
[-93.48821327980518, 41.77137549568163]
]
]
]
}
}
curl -X PUT \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "geometry": { "type: "MultiPolygon", "geometry": [...] } }'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/fields/{fieldId}/boundary'

Response

A Field as a JSON object.

Farms

Get all farms

 GET /farms

Gets a paged list of all farms. It is possible to pass some query parameters.

  • growerId, only matches Farms from this growerId (integer)
  • provider, only matches Farms from this provider (string)
  • leafUserId, only matches Farms from this Leaf User (UUID)
  • page, an integer specifying the page being fetched
  • size, an integer specifying the size of the page (defaults to 20)

The parameters are used exclusively for paging through results.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/farms'

Response

A JSON array containing farms.

[
{
"id": 1538766,
"name": "name",
"providerId": 2,
"providerName": "JohnDeere",
"providerFarmId": "00000000-0000-0000-0000-000000000000",
"leafUserId": "00000000-0000-0000-0000-000000000000",
"fieldIds": ["00000000-0000-0000-0000-000000000000"],
"growerId": 12345
}
]

Get a farm

 GET /users/{leafUserId}/farms/{id}

Gets a single farm by its id from the user leafUserId.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/farms/{id}'

Response

A single Farm as a JSON object.

{
"id": 1551010,
"name": "name",
"providerName": "JohnDeere",
"providerFarmId": "00000000-0000-0000-0000-000000000000",
"leafUserId": "00000000-0000-0000-0000-000000000000",
"fieldIds": ["00000000-0000-0000-0000-000000000000"],
"growerId": 123
}

Create a farm

 POST /users/{leafUserId}/farms

Creates a farm for the user leafUserId. It's possible to pass both the farmName and the growerId on the body of the request.

Request body example:

{
"name": "Farm 01",
"growerId": 123
}
curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "name": "farmName" }'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/farms'

Response

A single Farm as a JSON object.

Update a farm

 PUT /users/{leafUserId}/farms/{id}

Updates the farm with id id for the user leafUserId. It's possible to pass both the farmName and the growerId on the body of the request.

Request body example:

{
"name": "Updated Farm Name",
"growerId": 123
}
curl -X PUT \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "name": "newFarmName", "growerId": "newGrowerId }'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/farms/{id}'

Response

A single Farm as a JSON object.

Grower

Get all growers

 GET /growers

Gets a paged list of all growers. Use the following parameters for paging through results.

  • provider, only matches Growers from this provider (string)
  • leafUserId, only matches Growers from this Leaf User (UUID)
  • page, an integer specifying the page being fetched
  • size, an integer specifying the size of the page (defaults to 20)
curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/growers'

Response

A JSON array containing growers.

[
{
"id": 2345,
"leafUserId": "UUID",
"providerName": "str",
"providerOrganizationId": "str",
"providerCompanyId": "str",
"providerUserId": "str",
"providerGrowerId": "str",
"farmIds": [4534]
},
....
]

Get a grower

 GET /users/{leafUserId}/growers/{id}

Gets a single grower by its id from the user leafUserId.

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/growers/{id}'

Response

A single Grower as a JSON object. In our system Growers are equivalent to John Deere Client. That been said, the attribute name comes directly from the Client's name for growers with John Deere as provider.

{
"id": 2345,
"name": "str",
"leafUserId": "UUID",
"providerName": "str",
"providerOrganizationId": "str",
"providerCompanyId": "str",
"providerUserId": "str",
"providerGrowerId": "str",
"farmIds": [4534]
}

Create a grower

 POST /users/{leafUserId}/growers

Creates a grower for the user leafUserId. It's possible to pass name on the body of the request.

Request body example:

{
"name": "Example Grower Name"
}
curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "name": "growerName" }'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/growers'

Response

A single Grower as a JSON object.

Update a grower

 PUT /users/{leafUserId}/growers/{id}

Updates the grower with id id for the user leafUserId. It's possible to pass only the name on the body of the request.

Request body example:

{
"name": "Updated Grower Name"
}
curl -X PUT \
-H 'Authorization: Bearer YOUR_TOKEN' \
-d '{ "name": "newGrowerName"}'
'https://api.withleaf.io/services/fields/api/users/{leafUserId}/growers/{id}'

Response

A single Grower as a JSON object.

REST Resources

See below the REST resources and their endpoints.

Field Resource

A field might have one or neither of the following keys:

  • a "mergedFieldId" key or
  • a "sources" key

A Field will only have one of the previous keys if it is either a field that has been merged with other one(s) or if it is a result of a merge. Leaf merges fields that have any sort of overlap. This makes it easier for you to query operations from a field by querying by the merged field. Because a field might exist in multiple providers, Leaf detects that and creates a single field that you can query for - and you can still query by the individual fields too.

geometry and area are deprecated keys that contains the geometry of the active boundary and its area, respectively.

Below are the return possibilities when passing different geometries:

Response
VALID
REPEATED_POINT
HOLE_OUTSIDE_SHELL
NESTED_HOLES
DISCONNECTED_INTERIOR
SELF_INTERSECTION
RING_SELF_INTERSECTION
NESTED_SHELLS
DUPLICATE_RINGS
TOO_FEW_POINTS
INVALID_COORDINATE
RING_NOT_CLOSED
NOT_ALLOWED_GEOMETRY_TYPE
{
"id": "UUID",
"providerName": "str",
"providerFieldName": "str",
"providerFieldId": "str",
"providerFieldName": "str",
"providerBoundaryId": "UUID",
"type": "ORIGINAL",
"leafUserId": "UUID",
"organizationId": "str",
"mergedFieldId": ["UUID"],
"files": ["UUID"],
"boundaries": ["UUID"],
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[-93.48821327980518, 41.77137549568163],
[-93.48817333680519, 41.77143534378164],
[-93.48821327390516, 41.76068857977987],
[-93.48821327980518, 41.77137549568163]
]
]
]
},
"area": {
"value": double,
"unit": "ha"
}
}
DescriptionEndpoints
Get all fieldsGET /fields
Get a fieldGET /users/{id}/fields/{id}
Create a fieldPOST /users/{id}/fields
Get fields by geometryPOST /fields/query/intersects
Get intersection of fieldsPOST /users/{id}/fields/intersect
Delete a fieldDELETE /users/{id}/fields/{id}

Boundary Resource

Every Field at Leaf can have 0 or many boundaries. Fields created via Leaf's endpoints must have at least one boundary. Only one boundary may be active, the others are inactive boundaries. Boundaries cannot be deleted or have its geometry updated. Every update generates a new Boundary, and Leaf keeps a history of all seen Boundaries.

Each boundary has a status and providerStatus.

  • status - Represents the current status of the boundary:

    • ACTIVE - If the boundary was created at Leaf, it is the active boundary. If it is from a provider, this boundary exists at the provider and is the active boundary there.
    • INACTIVE - If the boundary was created at Leaf, it is an inactive boundary. If it is from a provider, this boundary exists at the provider and is inactive there.
    • OUTDATED_ON_PROVIDER - The boundary is from a provider. The boundary once existed on the provider exactly as it is in that boundary, but it was edited (e.g. has a new geometry but the same provider boundary id).
    • DELETED_ON_PROVIDER - The boundary is from a provider. The boundary once existed on the provider, but it was deleted. The user won't find that boundary in the provider.
  • providerStatus - Is the status of the boundary on the provider.

    • ACTIVE - The boundary is the active boundary in the provider.
    • INACTIVE - The boundary is inactive in the provider.

providerStatus, just like the geometry, is a static attribute. In case this attribute is changed at the provider, the boundary's status is updated and a new boundary is created with the updated providerStatus in order to maintain history.

{
"id": "UUID",
"status": "ACTIVE",
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
-89.84392762184143,
39.72439389620628
],
[
-89.84388470649719,
39.71943436012731
],
[
-89.83928203582764,
39.71951688444436
],
[
-89.83936786651611,
39.725392361998416
],
[
-89.84392762184143,
39.72439389620628
]
]
]
]
},
"area": {
"value": double,
"unit": "ha"
}
}
DescriptionEndpoints
Get all boundaries from fieldGET users/{leafUserId}/fields/{fieldId}/boundaries
Get a boundary from fieldGET users/{leafUserId}/fields/{fieldId}/boundaries/{boundaryId}
Get active boundary from fieldGET users/{leafUserId}/fields/{fieldId}/boundary
Update active boundary from fieldPUT users/{leafUserId}/fields/{fieldId}/boundary

Operation Resource

{
"id": "UUID",
"operationType": "harvested|planted|applied",
"startTime": "ISO date-time",
"endTime": "ISO date-time",
"crops": ["str"],
"varieties": ["str"],
"providerFileId": "str",
"provider": "Trimble",
"origin": "provider|merged|automerged|uploaded",
"leafUserId": "UUID"
}
DescriptionEndpoints
Get all operations of a field (deprecated)GET /users/{leafUserId}/fields/{fieldId}/operations
Get all operations of a fieldGET /users/{leafUserId}/fields/{fieldId}/operations/files
Get an operation of a field (deprecated)GET /users/{leafUserId}/fields/{fieldId}/operations/{fileId}
Get an operation of a fieldGET /users/{leafUserId}/fields/{fieldId}/operations/files/{fileId}

Farm Resource

{
"id": "long",
"name": "str",
"providerName": "str",
"providerFarmName": "str",
"providerFarmId": "UUID",
"leafUserId": "UUID",
"growerId": "long",
"fieldIds": ["UUID"]
}
DescriptionEndpoints
Get all farmsGET /farms
Get a farmGET /users/{id}/farms/{id}
Create a farmPOST /users/{leafUserId}/farms
Update a farmPUT /users/{leafUserId}/farms/{id}

Grower Resource

{
"id": 2345,
"leafUserId": "UUID",
"providerName": "str",
"providerOrganizationId": "str",
"providerCompanyId": "str",
"providerUserId": "str",
"providerGrowerId": "str",
"farmIds": [4534]
}

If there is a name available for the grower so the name property will be returned as well.

DescriptionEndpoints
Get all growersGET /growers
Get a growerGET /growers/{id}
Create a growerPOST /users/{leafUserId}/growers
Update a growerPUT /users/{leafUserId}/growers/{id}

Troubleshooting

Currently, we get the field boundary data as available from the provider, so in some cases there may be fields without boundaries or with invalid boundaries.

Below is an example of a self-intersect geometry that would be filtered by Leaf since we do not interpret as a valid geometry.

{
"geometry": {
"coordinates": [
[
[
[-47.779352980393611,-21.192167369960515],
[-47.775885948768021,-21.192669687635007],
[-47.775917640099145,-21.194602117356858],
[-47.780062866210912,-21.195033512590314],
[-47.77870013897234,-21.191730056712402],
[-47.779352980393611,-21.192167369960515]
]
]
],
"type": "MultiPolygon"
}
}

This is what this invalid type of geometry looks like from the provider side:

Field example

To avoid these errors, with the exception of the VALID answer, do not submit the types of geometries listed in the table.