GET api/Attendance/GetAttendanceByStudentIdMonthWise?typeId={typeId}&studenId={studenId}&month={month}&year={year}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
typeId

integer

Required

studenId

integer

Required

month

integer

Required

year

integer

Required

Body Parameters

None.

Response Information

Resource Description

ApiResponseResult
NameDescriptionTypeAdditional information
statusCode

integer

None.

status

boolean

None.

message

string

None.

data

Object

None.

ErrorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "statusCode": 1,
  "status": true,
  "message": "sample string 3",
  "data": {},
  "errorCode": 5
}

application/xml, text/xml

Sample:
<ApiResponseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ErrorCode>5</ErrorCode>
  <data />
  <message>sample string 3</message>
  <status>true</status>
  <statusCode>1</statusCode>
</ApiResponseResult>