Skip to main content
GET
/
api
/
v1
/
school
/
class-teacher-comments
/
teacher-comments
Get class teacher comments by teacher
curl --request GET \
  --url https://api.example.com/api/v1/school/class-teacher-comments/teacher-comments/ \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "teacher_id": "123e4567-e89b-12d3-a456-426614174000",
  "comments": [
    {
      "id": "789e4567-e89b-12d3-a456-426614174111",
      "class_teacher_id": "123e4567-e89b-12d3-a456-426614174000",
      "min_mark": 0,
      "max_mark": 39,
      "comment": "Needs significant improvement in all areas."
    },
    {
      "id": "789e4567-e89b-12d3-a456-426614174222",
      "class_teacher_id": "123e4567-e89b-12d3-a456-426614174000",
      "min_mark": 40,
      "max_mark": 49,
      "comment": "Shows potential but requires more effort."
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

teacher_id
string<uuid>
required

The ID of the class teacher to retrieve comments for

Response

{key}
any