POST api/UPdateStudentStatus
Request Information
URI Parameters
None.
Body Parameters
AttendanceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ATTENDANCE_ID | integer |
None. |
|
| STUDENT_ID | integer |
None. |
|
| ATTENDANCE_STATUS_FLG | string |
None. |
|
| LEAVE_DESC | string |
None. |
|
| CLASS_PARTICIPATION_STATUS | string |
None. |
|
| MOOD_STATUS | string |
None. |
|
| ACADEMIC_STATUS | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ATTENDANCE_ID": 1,
"STUDENT_ID": 2,
"ATTENDANCE_STATUS_FLG": "sample string 3",
"LEAVE_DESC": "sample string 4",
"CLASS_PARTICIPATION_STATUS": "sample string 5",
"MOOD_STATUS": "sample string 6",
"ACADEMIC_STATUS": "sample string 7"
}
application/xml, text/xml
Sample:
<AttendanceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Attendance"> <ACADEMIC_STATUS>sample string 7</ACADEMIC_STATUS> <ATTENDANCE_ID>1</ATTENDANCE_ID> <ATTENDANCE_STATUS_FLG>sample string 3</ATTENDANCE_STATUS_FLG> <CLASS_PARTICIPATION_STATUS>sample string 5</CLASS_PARTICIPATION_STATUS> <LEAVE_DESC>sample string 4</LEAVE_DESC> <MOOD_STATUS>sample string 6</MOOD_STATUS> <STUDENT_ID>2</STUDENT_ID> </AttendanceModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />