POST api/StudentList

Retorna el listado de estudiantes de una clase específica

Request Information

URI Parameters

None.

Body Parameters

StudentListDataRequest
NameDescriptionTypeAdditional information
TeacherBannerID

Id Banner del docente

string

None.

Nrc

NRC

string

None.

Term

Periodo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "teacherBannerID": "sample string 1",
  "nrc": "sample string 2",
  "term": "sample string 3"
}

Response Information

Resource Description

StudentListDataResponse
NameDescriptionTypeAdditional information
ResponseCode

Código de respuesta

StudentListResponseType

None.

ResponseMessage

Mensaje de respuesta

string

None.

Content

Contenido de respuesta

Collection of StudentListModel

None.

Response Formats

application/json, text/json

Sample:
{
  "responseCode": 0,
  "responseMessage": "sample string 1",
  "content": [
    {
      "studentBannerId": "sample string 1",
      "studentDisplayName": "sample string 2",
      "studentEmail": "sample string 3"
    },
    {
      "studentBannerId": "sample string 1",
      "studentDisplayName": "sample string 2",
      "studentEmail": "sample string 3"
    }
  ]
}