GET api/StudentData/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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"
}

application/xml, text/xml

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