Skip to main content
GET
/
v1
/
console
/
students
/
{user_id}
Get Student Detail
curl --request GET \
  --url http://localhost:8000/v1/console/students/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "status": "<string>",
    "student_email": "<string>",
    "student_name": "<string>",
    "user_id": "<string>",
    "case_studies_attempted": 0,
    "case_study_details": [],
    "cohort": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "last_seen": "2023-11-07T05:31:56Z",
    "overall_case_studies": 0,
    "programme_label": "",
    "programmes": [],
    "student_number": "<string>",
    "total_attempts": 0,
    "total_sessions": 0
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Path Parameters

user_id
string
required

Query Parameters

include_case_studies
boolean
default:true

Include per-case-study attempt cards

Response

Successful Response

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