Skip to main content
GET
/
v1
/
console
/
student-performance
/
{user_id}
/
attempts
Get Attempt History
curl --request GET \
  --url http://localhost:8000/v1/console/student-performance/{user_id}/attempts \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "attempts": [
      {
        "attempt_label": "<string>",
        "counted_as_attempt": true,
        "duration_seconds": 123,
        "session_id": "<string>",
        "status": "<string>",
        "used_for_final_score": true,
        "ended_at": "2023-11-07T05:31:56Z",
        "score": 123,
        "started_at": "2023-11-07T05:31:56Z"
      }
    ],
    "best_session_id": "<string>",
    "case_study_id": "<string>",
    "case_study_title": "<string>",
    "final_score": 123,
    "student_email": "<string>",
    "student_name": "<string>",
    "transcript_coverage": {
      "available": 0,
      "failed": 0,
      "missing": 0,
      "partial": 0,
      "processing": 0
    },
    "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
required

Response

Successful Response

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