POST api/StudentArea/GetStudentAbsentDetails
Request Information
URI Parameters
None.
Body Parameters
StudentAbsentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentFk | integer |
None. |
|
| SearchTxt | string |
None. |
|
| PageNo | integer |
None. |
|
| RowNo | integer |
None. |
|
| TotalRow | integer |
None. |
|
| StudentAbsentList | Collection of StudentAbsentInfo |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
|
| Domain | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StudentFk": 1,
"SearchTxt": "sample string 2",
"PageNo": 3,
"RowNo": 4,
"TotalRow": 5,
"StudentAbsentList": [
{
"AbsentDate": "2025-11-08T12:42:10.5848797+05:30",
"AttendanceInOut": "sample string 2"
},
{
"AbsentDate": "2025-11-08T12:42:10.5848797+05:30",
"AttendanceInOut": "sample string 2"
}
],
"Status": 6,
"Message": "sample string 7",
"Data": {},
"Domain": "sample string 9"
}
application/xml, text/xml
Sample:
<StudentAbsentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.StudentWork">
<Domain xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 9</Domain>
<Data xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models" />
<Message xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 7</Message>
<Status xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">6</Status>
<PageNo>3</PageNo>
<RowNo>4</RowNo>
<SearchTxt>sample string 2</SearchTxt>
<StudentAbsentList>
<StudentAbsentInfo>
<AbsentDate>2025-11-08T12:42:10.5848797+05:30</AbsentDate>
<AttendanceInOut>sample string 2</AttendanceInOut>
</StudentAbsentInfo>
<StudentAbsentInfo>
<AbsentDate>2025-11-08T12:42:10.5848797+05:30</AbsentDate>
<AttendanceInOut>sample string 2</AttendanceInOut>
</StudentAbsentInfo>
</StudentAbsentList>
<StudentFk>1</StudentFk>
<TotalRow>5</TotalRow>
</StudentAbsentModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.