POST v2/fertilization-recommendation.{ext}

Single Call API endpoint for fertilization recommendation

Request Information

URI Parameters

None.

Body Parameters

SingleCallFertilizationRecommendationModel
NameDescriptionTypeAdditional information
CropTypeId

Crop type ID

integer

None.

WetDate

Planting wet date

date

None.

HarvestDate

Planting harvest date

date

None.

ObstructionDepth

Obstruction depth (optional)

decimal number

None.

EventDate

event date

date

None.

DaysToNextFertilization

days to next fertilization

integer

None.

FertilizationsPerMonth

fertilizations per month

integer

None.

AgeOfCrop

age of crop, used for some commodity types like almonds

integer

None.

SoilLayers

Soil properties used to calculate fertilization. In some cases, may require multiple layers of data

Collection of SingleCallSoilLayer

None.

SoilSampleEvents

Soil sample events

Collection of SingleCallSoilSample

None.

Request Formats

application/json, text/json, text/html

Sample:
{
  "CropTypeId": 1,
  "WetDate": "2025-04-18T09:54:33.8474746-07:00",
  "HarvestDate": "2025-04-18T09:54:33.8474746-07:00",
  "ObstructionDepth": 1.0,
  "EventDate": "2025-04-18T09:54:33.8474746-07:00",
  "DaysToNextFertilization": 1,
  "FertilizationsPerMonth": 1,
  "AgeOfCrop": 1,
  "SoilLayers": [
    {
      "Depth": 1,
      "Density": 2.0,
      "Mineralization": 3.0
    },
    {
      "Depth": 1,
      "Density": 2.0,
      "Mineralization": 3.0
    }
  ],
  "SoilSampleEvents": [
    {
      "N": 1.0,
      "Depth": 2
    },
    {
      "N": 1.0,
      "Depth": 2
    }
  ]
}

application/xml, text/xml

Sample:
<SingleCallFertilizationRecommendationModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CropTypeId>1</CropTypeId>
  <WetDate>2025-04-18T09:54:33.8474746-07:00</WetDate>
  <HarvestDate>2025-04-18T09:54:33.8474746-07:00</HarvestDate>
  <ObstructionDepth>1</ObstructionDepth>
  <EventDate>2025-04-18T09:54:33.8474746-07:00</EventDate>
  <DaysToNextFertilization>1</DaysToNextFertilization>
  <FertilizationsPerMonth>1</FertilizationsPerMonth>
  <AgeOfCrop>1</AgeOfCrop>
  <SoilLayers>
    <SingleCallSoilLayer>
      <Depth>1</Depth>
      <Density>2</Density>
      <Mineralization>3</Mineralization>
    </SingleCallSoilLayer>
    <SingleCallSoilLayer>
      <Depth>1</Depth>
      <Density>2</Density>
      <Mineralization>3</Mineralization>
    </SingleCallSoilLayer>
  </SoilLayers>
  <SoilSampleEvents>
    <SingleCallSoilSample>
      <N>1</N>
      <Depth>2</Depth>
    </SingleCallSoilSample>
    <SingleCallSoilSample>
      <N>1</N>
      <Depth>2</Depth>
    </SingleCallSoilSample>
  </SoilSampleEvents>
</SingleCallFertilizationRecommendationModel>

Response Information

Resource Description

decimal number

Response Formats

application/json, text/json, text/html

Sample:
1.0

application/xml, text/xml

Sample:
<decimal>1</decimal>