GET v2/ranches/{id}/ranch-wells.{ext}

Returns a list of wells associated with a ranch

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RanchWell
NameDescriptionTypeAdditional information
Id

integer

None.

RanchId

integer

None.

Name

string

Required

String length: inclusive between 0 and 128

ElectricalConductivity

decimal number

None.

NitrogenPPM

decimal number

None.

CreatedDT

date

None.

LastUpdateDT

date

None.

Deleted

boolean

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "Id": 1,
    "RanchId": 2,
    "Name": "sample string 3",
    "ElectricalConductivity": 4.0,
    "NitrogenPPM": 5.0,
    "CreatedDT": "2023-09-24T05:54:16.176103-07:00",
    "LastUpdateDT": "2023-09-24T05:54:16.176103-07:00",
    "Deleted": true
  },
  {
    "Id": 1,
    "RanchId": 2,
    "Name": "sample string 3",
    "ElectricalConductivity": 4.0,
    "NitrogenPPM": 5.0,
    "CreatedDT": "2023-09-24T05:54:16.176103-07:00",
    "LastUpdateDT": "2023-09-24T05:54:16.176103-07:00",
    "Deleted": true
  }
]