GET /api/v1/student/{studentId}/timetable

Retrieve class timetable for a specific student - Feature not yet implemented

Path parameters

  • studentId string Required

    Unique identifier of the student

Responses

  • 200

    Student timetable retrieved successfully

  • 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
  • 404

    Student not found

  • 501

    Timetable system not yet implemented

GET /api/v1/student/{studentId}/timetable
curl \
 --request GET 'http://localhost:3500/api/v1/student/uuid-string/timetable'
Response examples (400)
{
  "message": "string",
  "error": "string",
  "statusCode": 42.0
}