POST api/AsistenciaAlumnos
Retorna la lista de alumnos de un bloque con su respectiva asistencia.
Request Information
URI Parameters
None.
Body Parameters
Objeto con los datos del bloque.
AsistenciaAlumnosDataRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| BlockGuid |
GUID del bloque. |
string |
None. |
| BlockScheduleGuid |
GUID del horario del bloque. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"blockGuid": "sample string 1",
"blockScheduleGuid": "sample string 2"
}
Response Information
Resource Description
AsistenciaAlumnosDataResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode |
Si el llamado se ejecuta correctamente |
AsistenciaAlumnosResponseType |
None. |
| ResponseMessage |
Mensaje con el estado de la invocación |
string |
None. |
| Content |
Lista de las asistencias |
Collection of StudentAttendanceModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"responseCode": 0,
"responseMessage": "sample string 1",
"content": [
{
"studentId": 1,
"studentAttendanceStudentDisplayName": "sample string 2",
"studentAttendanceList": [
{
"studentAttendanceId": 1,
"studentAttendanceGuid": "sample string 2",
"scheduleId": 3,
"schedulePlannedStartTime": "sample string 4",
"schedulePlannedEndTime": "sample string 5",
"studentAttendanceAttend": true,
"programLevelId": "sample string 7"
},
{
"studentAttendanceId": 1,
"studentAttendanceGuid": "sample string 2",
"scheduleId": 3,
"schedulePlannedStartTime": "sample string 4",
"schedulePlannedEndTime": "sample string 5",
"studentAttendanceAttend": true,
"programLevelId": "sample string 7"
}
]
},
{
"studentId": 1,
"studentAttendanceStudentDisplayName": "sample string 2",
"studentAttendanceList": [
{
"studentAttendanceId": 1,
"studentAttendanceGuid": "sample string 2",
"scheduleId": 3,
"schedulePlannedStartTime": "sample string 4",
"schedulePlannedEndTime": "sample string 5",
"studentAttendanceAttend": true,
"programLevelId": "sample string 7"
},
{
"studentAttendanceId": 1,
"studentAttendanceGuid": "sample string 2",
"scheduleId": 3,
"schedulePlannedStartTime": "sample string 4",
"schedulePlannedEndTime": "sample string 5",
"studentAttendanceAttend": true,
"programLevelId": "sample string 7"
}
]
}
]
}