GET api/GetLevelNames

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LevelNamesModel
NameDescriptionTypeAdditional information
Level_Id

integer

None.

Level_Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Level_Id": 1,
    "Level_Name": "sample string 2"
  },
  {
    "Level_Id": 1,
    "Level_Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLevelNamesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VullamAPIProject.Models">
  <LevelNamesModel>
    <Level_Id>1</Level_Id>
    <Level_Name>sample string 2</Level_Name>
  </LevelNamesModel>
  <LevelNamesModel>
    <Level_Id>1</Level_Id>
    <Level_Name>sample string 2</Level_Name>
  </LevelNamesModel>
</ArrayOfLevelNamesModel>