POST api/teacher/RollCall

Request Information

URI Parameters

None.

Body Parameters

Collection of StudentRollCall
NameDescriptionTypeAdditional information
OperatorId

string

None.

CourseScheduleId

string

None.

StudentId

string

None.

StudentName

string

None.

Checked

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "OperatorId": "sample string 1",
    "CourseScheduleId": "sample string 2",
    "StudentId": "sample string 3",
    "StudentName": "sample string 4",
    "Checked": true
  },
  {
    "OperatorId": "sample string 1",
    "CourseScheduleId": "sample string 2",
    "StudentId": "sample string 3",
    "StudentName": "sample string 4",
    "Checked": true
  }
]

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseHttpResult
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2"
}