Skip to main content
GET
/
v1
/
console
/
student-performance
/
attempts
/
{session_id}
Get Attempt Detail
curl --request GET \
  --url http://localhost:8000/v1/console/student-performance/attempts/{session_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "attempt_label": "<string>",
    "case_study_id": "<string>",
    "case_study_title": "<string>",
    "session": {
      "duration_seconds": 123,
      "status": "<string>",
      "end_reason": "<string>",
      "end_time": "2023-11-07T05:31:56Z",
      "start_time": "2023-11-07T05:31:56Z"
    },
    "session_id": "<string>",
    "student_email": "<string>",
    "student_name": "<string>",
    "transcript": {
      "session_id": "<string>",
      "messages": [],
      "reason": "<string>"
    },
    "used_for_final_score": true,
    "user_id": "<string>",
    "grade": {
      "created_at": "2023-11-07T05:31:56Z",
      "final_score": 123,
      "grade_id": "<string>",
      "session_id": "<string>",
      "items": [],
      "overall_summary": "<string>",
      "score_justifications": {},
      "strengths": [],
      "weaknesses": []
    }
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

Enter your JWT access token

Path Parameters

session_id
string
required

Response

Successful Response

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