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

Retrieve attendance records for a specific student - Feature not yet implemented

Path parameters

  • studentId string Required

    Unique identifier of the student

Responses

  • 200

    Student attendance 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

    Attendance tracking not yet implemented

GET /api/v1/student/{studentId}/attendance
curl \
 --request GET 'https://api.echoplain.social/api/v1/student/uuid-string/attendance'
Response examples (400)
{
  "message": "string",
  "error": "string",
  "statusCode": 42.0
}