Skip to main content
GET
/
v1
/
grades
/
session
/
{session_id}
Get Grade By Session
curl --request GET \
  --url http://localhost:8000/v1/grades/session/{session_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "content_id": "<string>",
    "content_type_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "final_score": 123,
    "id": "<string>",
    "session_id": "<string>",
    "user_id": "<string>",
    "items": [],
    "overall_summary": "<string>",
    "rubric_id": "<string>",
    "score_justifications": {},
    "strengths": [],
    "user_name": "<string>",
    "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
GradeResponse · object
message
string | null
success
boolean
default:true