GET v2/wells/{wellId}.json
Returns well details
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
wellId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
RanchWellViewModelName | Description | Type | Additional information |
---|---|---|---|
Id |
Well ID |
integer |
None. |
Name |
name |
string |
Required |
ElectricalConductivity |
electrical conductivity |
decimal number |
Range: inclusive between 0 and 2147483647 |
NitrogenPPM |
nitrogen ppm |
decimal number |
Range: inclusive between 0 and 2147483647 |
Response Formats
application/json, text/json, text/html
Sample:
{ "Id": 1, "Name": "sample string 1", "ElectricalConductivity": 2.0, "NitrogenPPM": 3.0 }
application/xml, text/xml
Sample:
<RanchWellViewModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>1</Id> <Name>sample string 1</Name> <ElectricalConductivity>2</ElectricalConductivity> <NitrogenPPM>3</NitrogenPPM> </RanchWellViewModel>