Skip to main content
GET
/
v1
/
console
/
student-performance
/
{user_id}
Get Student Detail
curl --request GET \
  --url http://localhost:8000/v1/console/student-performance/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "average_score": 123,
    "per_case_study": [
      {
        "attempt_count": 123,
        "best_session_id": "<string>",
        "case_study_id": "<string>",
        "case_study_title": "<string>",
        "final_score": 123,
        "latest_attempt_at": "2023-11-07T05:31:56Z"
      }
    ],
    "student_email": "<string>",
    "student_name": "<string>",
    "total_attempts": 123,
    "user_id": "<string>"
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Path Parameters

user_id
string
required

Query Parameters

case_study_id
string | null

Response

Successful Response

data
StudentSummaryDetail · object
message
string | null
success
boolean
default:true