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

Retrieve fee information and payment history for a specific student - Feature not yet implemented

Path parameters

  • studentId string Required

    Unique identifier of the student

Responses

  • 200

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

    Fee management not yet implemented

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