GET api/Exam/GetPendingStudentExam

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CourseExam
NameDescriptionTypeAdditional information
CourseExamId

integer

None.

StudentId

integer

None.

CourseId

integer

None.

CreatedDate

date

None.

Approved

boolean

None.

Rejected

boolean

None.

Reason

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CourseExamId": 1,
    "StudentId": 1,
    "CourseId": 1,
    "CreatedDate": "2025-01-22T11:22:40.34502-07:00",
    "Approved": true,
    "Rejected": true,
    "Reason": "sample string 2"
  },
  {
    "CourseExamId": 1,
    "StudentId": 1,
    "CourseId": 1,
    "CreatedDate": "2025-01-22T11:22:40.34502-07:00",
    "Approved": true,
    "Rejected": true,
    "Reason": "sample string 2"
  }
]