GET api/Student/GetYouthsAttendanceData?whr={whr}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
whr

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetYouthsAttendanceData_Result
NameDescriptionTypeAdditional information
studentid

integer

None.

studentname

string

None.

batchname

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "studentid": 1,
    "studentname": "sample string 2",
    "batchname": "sample string 3"
  },
  {
    "studentid": 1,
    "studentname": "sample string 2",
    "batchname": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetYouthsAttendanceData_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
  <GetYouthsAttendanceData_Result>
    <batchname>sample string 3</batchname>
    <studentid>1</studentid>
    <studentname>sample string 2</studentname>
  </GetYouthsAttendanceData_Result>
  <GetYouthsAttendanceData_Result>
    <batchname>sample string 3</batchname>
    <studentid>1</studentid>
    <studentname>sample string 2</studentname>
  </GetYouthsAttendanceData_Result>
</ArrayOfGetYouthsAttendanceData_Result>