GET /api/v1/lecturer/{lecturerId}/students

Retrieves comprehensive list of students enrolled in lecturer's units with advanced search and filtering capabilities.

Path parameters

  • lecturerId string Required

    Unique identifier of the lecturer

Query parameters

  • cohortId

    Filter students by specific cohort/class

  • unitOfferingId

    Filter students by specific unit offering

  • status string

    Filter by student unit enrollment status

    Values are ACTIVE, UNDER_REVIEW, PASSED, FAILED, RETAKE, EXTERNAL_REPEAT, NOT_STARTED, PAUSED, UNCATEGORIZED, or PENDING.

Responses

  • 200
  • 400 application/json

    Default bad request error 400 response

    Hide response attributes Show response attributes object
    • message string Required

      Response message

    • error string Required
    • statusCode number Required
GET /api/v1/lecturer/{lecturerId}/students
curl \
 --request GET 'http://localhost:3500/api/v1/lecturer/123e4567-e89b-12d3-a456-426614174000/students'
Response examples (400)
{
  "message": "string",
  "error": "string",
  "statusCode": 42.0
}