Skip to main content
PATCH
/
ims
/
oneroster
/
gradebook
/
v1p2
/
assessmentLineItems
/
{sourcedId}
Partially Update an Assessment Line Item
curl --request PATCH \
  --url https://api.alpha-1edtech.ai/ims/oneroster/gradebook/v1p2/assessmentLineItems/{sourcedId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assessmentLineItem": {
    "status": "active",
    "metadata": {},
    "title": "<string>",
    "description": "<string>",
    "class": {
      "sourcedId": "<string>"
    },
    "parentAssessmentLineItem": {
      "sourcedId": "<string>"
    },
    "scoreScale": {
      "sourcedId": "<string>"
    },
    "resultValueMin": 123,
    "resultValueMax": 123,
    "component": {
      "sourcedId": "<string>"
    },
    "componentResource": {
      "sourcedId": "<string>"
    },
    "learningObjectiveSet": [
      {
        "source": "<string>",
        "learningObjectiveIds": [
          "<string>"
        ]
      }
    ],
    "course": {
      "sourcedId": "<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 line item to update

Body

application/json
assessmentLineItem
object
required

Response

Successfully updated

The response is of type object.