GET api/Watershed/GetObservation?watershedId={watershedId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
watershedId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Watershed
NameDescriptionTypeAdditional information
WatershedId

integer

None.

WatershedName

string

None.

ImageName

string

None.

ImageMapName

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "WatershedId": 1,
  "WatershedName": "sample string 1",
  "ImageName": "sample string 2",
  "ImageMapName": "sample string 3",
  "Message": "sample string 4"
}

application/xml, text/xml

Sample:
<Watershed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <ImageMapName>sample string 3</ImageMapName>
  <ImageName>sample string 2</ImageName>
  <Message>sample string 4</Message>
  <WatershedId>1</WatershedId>
  <WatershedName>sample string 1</WatershedName>
</Watershed>