Rubrics
PATCH - Rubric Criteria
This API allows authenticated users to partially update an existing rubric criteria using its ID. Only the fields that need modification should be sent in the request body.
Key Notes:
- This is a partial update, so all fields are optional.
- Useful when you want to update just one or two properties like
maxScore
orscoringLogic
. - Returns the updated rubric criteria along with its metadata.
Fields You Can Update:
name
: Title of the criteria (e.g., Cohesiveness).description
: (Optional) More context or explanation of the criteria.maxScore
/minScore
: Scoring range (e.g., 1 Star to 5 Star).scoringLogic
: Array of objects defining logic per score.
Scenario: Editing Scoring Logic
A teacher wants to improve clarity in the scoring explanation for a specific score value.
PATCH
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the rubric the criteria belongs to
ID of the rubric criteria to be updated
Body
application/json
Response
200
application/json
Rubric criteria updated successfully.
The response is of type object
.