GET v2/cut-events/{id}.{ext}

Returns cut event data

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CutEvent
NameDescriptionTypeAdditional information
Id

integer

None.

PlantingId

integer

None.

EventDate

date

None.

MaturityId

integer

None.

Yield

decimal number

None.

LastUpdatedUser

string

None.

LastUpdatedTimestamp

string

None.

LastUpdated

string

None.

CutInterval

decimal number

None.

IsBookmark

boolean

None.

Response Formats

application/json, text/json, text/html

Sample:
{
  "Id": 1,
  "PlantingId": 2,
  "EventDate": "2025-01-24T21:36:01.0901018-08:00",
  "MaturityId": 1,
  "Yield": 4.0,
  "LastUpdatedUser": "sample string 5",
  "LastUpdatedTimestamp": "sample string 6",
  "LastUpdated": "sample string 7",
  "CutInterval": 1.1,
  "IsBookmark": true
}

application/xml, text/xml

Sample:
<CutEvent xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
  <PlantingId>2</PlantingId>
  <EventDate>2025-01-24T21:36:01.0901018-08:00</EventDate>
  <MaturityId>1</MaturityId>
  <Yield>4</Yield>
  <LastUpdatedUser>sample string 5</LastUpdatedUser>
  <LastUpdatedTimestamp>sample string 6</LastUpdatedTimestamp>
  <LastUpdated>sample string 7</LastUpdated>
  <CutInterval>1.1</CutInterval>
  <IsBookmark>true</IsBookmark>
</CutEvent>