GET api/Project4H/GetAllRecordbookLevels

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RecordbookLevel
NameDescriptionTypeAdditional information
LevelID

integer

None.

Level

string

None.

LevelAbr

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LevelID": 1,
    "Level": "sample string 2",
    "LevelAbr": "sample string 3"
  },
  {
    "LevelID": 1,
    "Level": "sample string 2",
    "LevelAbr": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecordbookLevel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Equestrian.Entities">
  <RecordbookLevel>
    <Level>sample string 2</Level>
    <LevelAbr>sample string 3</LevelAbr>
    <LevelID>1</LevelID>
  </RecordbookLevel>
  <RecordbookLevel>
    <Level>sample string 2</Level>
    <LevelAbr>sample string 3</LevelAbr>
    <LevelID>1</LevelID>
  </RecordbookLevel>
</ArrayOfRecordbookLevel>