GET api/v_Lessons

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of v_Lessons
NameDescriptionTypeAdditional information
Id

integer

None.

title

string

None.

noofquestions

integer

None.

status

integer

None.

orderby

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "title": "sample string 2",
    "noofquestions": 3,
    "status": 1,
    "orderby": 1
  },
  {
    "Id": 1,
    "title": "sample string 2",
    "noofquestions": 3,
    "status": 1,
    "orderby": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfv_Lessons xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/exantasgameapi.Models">
  <v_Lessons>
    <Id>1</Id>
    <noofquestions>3</noofquestions>
    <orderby>1</orderby>
    <status>1</status>
    <title>sample string 2</title>
  </v_Lessons>
  <v_Lessons>
    <Id>1</Id>
    <noofquestions>3</noofquestions>
    <orderby>1</orderby>
    <status>1</status>
    <title>sample string 2</title>
  </v_Lessons>
</ArrayOfv_Lessons>