Skip to main content
GET
/
ims
/
oneroster
/
gradebook
/
v1p2
/
assessmentResults
/
{sourcedId}
Get an Assessment Result
curl --request GET \
  --url https://api.alpha-1edtech.ai/ims/oneroster/gradebook/v1p2/assessmentResults/{sourcedId} \
  --header 'Authorization: Bearer <token>'
{
  "assessmentResult": {
    "status": "active",
    "assessmentLineItem": {
      "sourcedId": "<string>"
    },
    "student": {
      "sourcedId": "<string>"
    },
    "scoreDate": "2023-11-07T05:31:56Z",
    "scoreStatus": "exempt",
    "sourcedId": "<string>",
    "dateLastModified": "2023-11-07T05:31:56Z",
    "metadata": {},
    "score": 123,
    "textScore": "<string>",
    "scoreScale": {
      "sourcedId": "<string>"
    },
    "scorePercentile": 123,
    "comment": "<string>",
    "learningObjectiveSet": [
      {
        "source": "<string>",
        "learningObjectiveResults": [
          {
            "learningObjectiveId": "<string>",
            "score": 123,
            "textScore": "<string>"
          }
        ]
      }
    ],
    "inProgress": "<string>",
    "incomplete": "<string>",
    "late": "<string>",
    "missing": "<string>"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

sourcedId
string
required

The sourcedId of the assessment result

Query Parameters

fields
string

Comma-separated list of fields to include in the response

Example:

"sourcedId,name"

Response

Successful response with the assessment result

assessmentResult
object
required

Represents an assessment result.