v7

latestSwagger 2.02026-07-13186148695.0 KB
HarvestData

Search for HarvestData across all parties by intersecting geometry.

post/harvest-data:search

Query parameters

skipTokenstring

Skip token for getting next set of results.

maxPageSizeinteger

Maximum number of items needed (inclusive). Minimum = 10, Maximum = 1000, Default Value = 50.

api-versionstring required

The requested API version

Request body

minTotalYieldnumber double

Minimum Yield value(inclusive).

maxTotalYieldnumber double

Maximum Yield value (inclusive).

minAvgYieldnumber double

Minimum AvgYield value(inclusive).

maxAvgYieldnumber double

Maximum AvgYield value (inclusive).

minTotalWetMassnumber double

Minimum Total WetMass value(inclusive).

maxTotalWetMassnumber double

Maximum Total WetMass value (inclusive).

minAvgWetMassnumber double

Minimum AvgWetMass value(inclusive).

maxAvgWetMassnumber double

Maximum AvgWetMass value (inclusive).

minAvgMoisturenumber double

Minimum AvgMoisture value(inclusive).

maxAvgMoisturenumber double

Maximum AvgMoisture value (inclusive).

minAvgSpeednumber double

Minimum AvgSpeed value(inclusive).

maxAvgSpeednumber double

Maximum AvgSpeed value (inclusive).

associatedResourceIdsstring[]

Resource Ids of the resource.

associatedResourceTypestring

Resource Types of the resource. i.e. Farmer, Farm, Field, SeasonalField, ApplicationData, HarvestData, TillageData, PlantingData, PlantTissueAnalysis.

minOperationStartDateTimestring date-time

Minimum start date-time of the operation data, sample format: yyyy-MM-ddTHH:mm:ssZ (inclusive).

maxOperationStartDateTimestring date-time

Maximum start date-time of the operation data, sample format: yyyy-MM-ddTHH:mm:ssZ (inclusive).

minOperationEndDateTimestring date-time

Minimum end date-time of the operation data, sample format: yyyy-MM-ddTHH:mm:ssZ (inclusive).

maxOperationEndDateTimestring date-time

Maximum end date-time of the operation data, sample format: yyyy-MM-ddTHH:mm:ssZ (inclusive).

minOperationModifiedDateTimestring date-time

Minimum modified date-time of the operation data, sample format: yyyy-MM-ddTHH:mm:ssZ (inclusive).

maxOperationModifiedDateTimestring date-time

Maximum modified date-time of the operation data, sample format: yyyy-MM-ddTHH:mm:ssZ (inclusive).

sourcesstring[]

Sources of the operation data.

minAreanumber double

Minimum acreage of the boundary (inclusive).

maxAreanumber double

Maximum acreage of the boundary (inclusive).

idsstring[]

Ids of the resource.

namesstring[]

Names of the resource.

propertyFiltersstring[]

Filters on key-value pairs within the Properties object. e.g. "{testKey} eq {testValue}".

statusesstring[]

Statuses of the resource.

minCreatedDateTimestring date-time

Minimum creation date of resource (inclusive).

maxCreatedDateTimestring date-time

Maximum creation date of resource (inclusive).

minLastModifiedDateTimestring date-time

Minimum last modified date of resource (inclusive).

maxLastModifiedDateTimestring date-time

Maximum last modified date of resource (inclusive).

partyIdstring

Party ID which belongs to the operation data.

Response

Success

skipTokenstring

Token used in retrieving the next page. If null, there are no additional pages.

nextLinkstring

Continuation link (absolute URI) to the next page of results in the list.

Example response

{
  "value": [
    {
      "operationModifiedDateTime": "2021-02-10T11:10:21Z",
      "operationStartDateTime": "2020-12-31T11:10:21Z",
      "operationEndDateTime": "2021-01-31T11:10:21Z",
      "createdDateTime": "2020-12-31T11:10:21Z",
      "modifiedDateTime": "2020-12-31T11:10:21Z",
      "properties": {
        "key1": "value1",
        "key2": 123.45
      }
    }
  ]
}