GET api/MrAttendenceCalender?username={username}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Student
NameDescriptionTypeAdditional information
studentid

integer

None.

StudentName

string

None.

SchoolId

integer

None.

ClassId

integer

None.

DivisionId

integer

None.

yearId

integer

None.

commiteeId

string

None.

schoolName

string

None.

commiteename

string

None.

UserName

integer

None.

StandardName

string

None.

DivisionName

string

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "studentid": 1,
    "studentName": "sample string 2",
    "schoolId": 3,
    "classId": 4,
    "divisionId": 5,
    "yearId": 6,
    "commiteeId": "sample string 7",
    "schoolName": "sample string 8",
    "commiteename": "sample string 9",
    "userName": 10,
    "standardName": "sample string 11",
    "divisionName": "sample string 12"
  },
  {
    "studentid": 1,
    "studentName": "sample string 2",
    "schoolId": 3,
    "classId": 4,
    "divisionId": 5,
    "yearId": 6,
    "commiteeId": "sample string 7",
    "schoolName": "sample string 8",
    "commiteename": "sample string 9",
    "userName": 10,
    "standardName": "sample string 11",
    "divisionName": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Web_Api.App_Start.Entity">
  <Student>
    <ClassId>4</ClassId>
    <DivisionId>5</DivisionId>
    <DivisionName>sample string 12</DivisionName>
    <SchoolId>3</SchoolId>
    <StandardName>sample string 11</StandardName>
    <UserName>10</UserName>
    <commiteeId>sample string 7</commiteeId>
    <commiteename>sample string 9</commiteename>
    <schoolName>sample string 8</schoolName>
    <studentid>1</studentid>
    <yearId>6</yearId>
  </Student>
  <Student>
    <ClassId>4</ClassId>
    <DivisionId>5</DivisionId>
    <DivisionName>sample string 12</DivisionName>
    <SchoolId>3</SchoolId>
    <StandardName>sample string 11</StandardName>
    <UserName>10</UserName>
    <commiteeId>sample string 7</commiteeId>
    <commiteename>sample string 9</commiteename>
    <schoolName>sample string 8</schoolName>
    <studentid>1</studentid>
    <yearId>6</yearId>
  </Student>
</ArrayOfStudent>