GET api/v2/referencetables/divrectypes

Returns list of Div Rec Types

NameDescriptionType
divRecType

Type of record: diversion; stage/volume; or comment

string
divRecTypeLong

Long version of the Diversion Record Type

string

Response Formats

application/json, text/json
Sample:
[
  {
    "divRecType": "sample string 1",
    "divRecTypeLong": "sample string 2"
  },
  {
    "divRecType": "sample string 1",
    "divRecTypeLong": "sample string 2"
  }
]
application/xml, text/xml
Sample:
<ArrayOfDivRecType xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <DivRecType>
    <divRecType>sample string 1</divRecType>
    <divRecTypeLong>sample string 2</divRecTypeLong>
  </DivRecType>
  <DivRecType>
    <divRecType>sample string 1</divRecType>
    <divRecTypeLong>sample string 2</divRecTypeLong>
  </DivRecType>
</ArrayOfDivRecType>