GET v2/fertilization-events/{eventId}/wells.{ext}

Returns a list of wells associated with a fertilization event

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

Fertilization event ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of FertilizationEventWellJSON
NameDescriptionTypeAdditional information
Id

integer

None.

EventId

integer

None.

WellId

integer

None.

Percentage

integer

None.

Percentage_default

integer

None.

NitrogenPPM

decimal number

None.

Name

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "Id": 1,
    "EventId": 2,
    "WellId": 3,
    "Percentage": 4,
    "Percentage_default": 1,
    "NitrogenPPM": 1.0,
    "Name": "sample string 5"
  },
  {
    "Id": 1,
    "EventId": 2,
    "WellId": 3,
    "Percentage": 4,
    "Percentage_default": 1,
    "NitrogenPPM": 1.0,
    "Name": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfFertilizationEventWellJSON xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <FertilizationEventWellJSON>
    <Id>1</Id>
    <EventId>2</EventId>
    <WellId>3</WellId>
    <Percentage>4</Percentage>
    <Percentage_default>1</Percentage_default>
    <NitrogenPPM>1</NitrogenPPM>
    <Name>sample string 5</Name>
  </FertilizationEventWellJSON>
  <FertilizationEventWellJSON>
    <Id>1</Id>
    <EventId>2</EventId>
    <WellId>3</WellId>
    <Percentage>4</Percentage>
    <Percentage_default>1</Percentage_default>
    <NitrogenPPM>1</NitrogenPPM>
    <Name>sample string 5</Name>
  </FertilizationEventWellJSON>
</ArrayOfFertilizationEventWellJSON>