GET api/StudentData

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of StudentData
NameDescriptionTypeAdditional information
StudentID

integer

None.

StdName

string

None.

StdAddress

string

None.

Course

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StudentID": 1,
    "StdName": "sample string 2",
    "StdAddress": "sample string 3",
    "Course": "sample string 4"
  },
  {
    "StudentID": 1,
    "StdName": "sample string 2",
    "StdAddress": "sample string 3",
    "Course": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IcatcherWAMS">
  <StudentData>
    <Course>sample string 4</Course>
    <StdAddress>sample string 3</StdAddress>
    <StdName>sample string 2</StdName>
    <StudentID>1</StudentID>
  </StudentData>
  <StudentData>
    <Course>sample string 4</Course>
    <StdAddress>sample string 3</StdAddress>
    <StdName>sample string 2</StdName>
    <StudentID>1</StudentID>
  </StudentData>
</ArrayOfStudentData>