GET api/Student/GetStudentAttendnaceList/{userid}/{role}/{pgid}?whr={whr}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userid

string

Required

role

string

Required

pgid

string

Required

whr

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetStudentAttendanceList_Result
NameDescriptionTypeAdditional information
fullname

string

None.

Studentid

string

None.

batchid

string

None.

batchname

string

None.

attdate

date

None.

totpresent

integer

None.

totabsent

integer

None.

tRecordCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "fullname": "sample string 1",
    "Studentid": "sample string 2",
    "batchid": "sample string 3",
    "batchname": "sample string 4",
    "attdate": "2025-06-28T02:28:55.9876521+05:30",
    "totpresent": 1,
    "totabsent": 1,
    "tRecordCount": 5
  },
  {
    "fullname": "sample string 1",
    "Studentid": "sample string 2",
    "batchid": "sample string 3",
    "batchname": "sample string 4",
    "attdate": "2025-06-28T02:28:55.9876521+05:30",
    "totpresent": 1,
    "totabsent": 1,
    "tRecordCount": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetStudentAttendanceList_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <GetStudentAttendanceList_Result>
    <Studentid>sample string 2</Studentid>
    <attdate>2025-06-28T02:28:55.9876521+05:30</attdate>
    <batchid>sample string 3</batchid>
    <batchname>sample string 4</batchname>
    <fullname>sample string 1</fullname>
    <tRecordCount>5</tRecordCount>
    <totabsent>1</totabsent>
    <totpresent>1</totpresent>
  </GetStudentAttendanceList_Result>
  <GetStudentAttendanceList_Result>
    <Studentid>sample string 2</Studentid>
    <attdate>2025-06-28T02:28:55.9876521+05:30</attdate>
    <batchid>sample string 3</batchid>
    <batchname>sample string 4</batchname>
    <fullname>sample string 1</fullname>
    <tRecordCount>5</tRecordCount>
    <totabsent>1</totabsent>
    <totpresent>1</totpresent>
  </GetStudentAttendanceList_Result>
</ArrayOfGetStudentAttendanceList_Result>