GET api/v2/structures/divrec/stagevolume
Returns list of stage volumes based on WDID
| Name | Description | Type |
|---|---|---|
| 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
[
{
"wdid": "sample string 1",
"dataMeasDate": "2025-12-13T18:55:43.2648496-07:00",
"stage": 1.0,
"volume": 1.0,
"approvalStatus": "sample string 2",
"modified": "2025-12-13T18:55:43.2648496-07:00"
},
{
"wdid": "sample string 1",
"dataMeasDate": "2025-12-13T18:55:43.2648496-07:00",
"stage": 1.0,
"volume": 1.0,
"approvalStatus": "sample string 2",
"modified": "2025-12-13T18:55:43.2648496-07:00"
}
]
application/xml, text/xml
<ArrayOfDivRecStageVolume xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<DivRecStageVolume>
<approvalStatus>sample string 2</approvalStatus>
<dataMeasDate>2025-12-13T18:55:43.2648496-07:00</dataMeasDate>
<modified>2025-12-13T18:55:43.2648496-07:00</modified>
<stage>1</stage>
<volume>1</volume>
<wdid>sample string 1</wdid>
</DivRecStageVolume>
<DivRecStageVolume>
<approvalStatus>sample string 2</approvalStatus>
<dataMeasDate>2025-12-13T18:55:43.2648496-07:00</dataMeasDate>
<modified>2025-12-13T18:55:43.2648496-07:00</modified>
<stage>1</stage>
<volume>1</volume>
<wdid>sample string 1</wdid>
</DivRecStageVolume>
</ArrayOfDivRecStageVolume>