GET api/v2/structures/divrec/stagevolume

Returns list of stage volumes based on WDID

NameDescriptionType
approvalStatus

Indicates that the data is provisional, meaning the data has not yet passed a final review by the water commissioner, or published.

string
dataMeasDate

Measurement date of Stage/Volume reading

date
modified

Last date time that this record was modified in the DWR database

date
stage

Recorded stage (feet)

decimal number
volume

Recorded volume (AF)

decimal number
wdid

DWR unique structure identifier

string

Response Formats

application/json, text/json
Sample:
[
  {
    "wdid": "sample string 1",
    "dataMeasDate": "2024-05-21T23:44:50.7929748-06:00",
    "stage": 1.0,
    "volume": 1.0,
    "approvalStatus": "sample string 2",
    "modified": "2024-05-21T23:44:50.7929748-06:00"
  },
  {
    "wdid": "sample string 1",
    "dataMeasDate": "2024-05-21T23:44:50.7929748-06:00",
    "stage": 1.0,
    "volume": 1.0,
    "approvalStatus": "sample string 2",
    "modified": "2024-05-21T23:44:50.7929748-06:00"
  }
]
application/xml, text/xml
Sample:
<ArrayOfDivRecStageVolume xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <DivRecStageVolume>
    <approvalStatus>sample string 2</approvalStatus>
    <dataMeasDate>2024-05-21T23:44:50.7929748-06:00</dataMeasDate>
    <modified>2024-05-21T23:44:50.7929748-06:00</modified>
    <stage>1</stage>
    <volume>1</volume>
    <wdid>sample string 1</wdid>
  </DivRecStageVolume>
  <DivRecStageVolume>
    <approvalStatus>sample string 2</approvalStatus>
    <dataMeasDate>2024-05-21T23:44:50.7929748-06:00</dataMeasDate>
    <modified>2024-05-21T23:44:50.7929748-06:00</modified>
    <stage>1</stage>
    <volume>1</volume>
    <wdid>sample string 1</wdid>
  </DivRecStageVolume>
</ArrayOfDivRecStageVolume>