PATCH
/
rubrics
/
v1
/
rubric
/
{id}
/
criteria
/
{criteriaId}
curl --request PATCH \
  --url https://api-staging.crazygoldfish.com/rubrics/v1/rubric/{id}/criteria/{criteriaId}/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Cohesiveness",
  "description": "Optional detailed info about this criteria",
  "maxScore": "5 Star",
  "minScore": "1 Star",
  "scoringLogic": [
    {
      "score": "5 Star",
      "scoringLogic": "Logical & coherent sequence with a smooth beginning, a solid middle & an impactful conclusion"
    }
  ]
}'
{
  "id": "d102b0ff-1111-4235-b8e9-764ef03c57cb",
  "name": "Cohesiveness",
  "maxScore": "5 Star",
  "minScore": "1 Star",
  "scoringLogic": [
    {
      "score": "5 Star",
      "scoringLogic": "Logical & coherent sequence with a smooth beginning, a solid middle & an impactful conclusion"
    }
  ],
  "createdAt": "2025-03-27T11:34:53.172550Z",
  "modifiedAt": "2025-03-27T11:35:17.739952Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

ID of the rubric the criteria belongs to

criteriaId
string
required

ID of the rubric criteria to be updated

Body

application/json
name
string

Name of the rubric criteria

Example:

"Cohesiveness"

description
string

Description of the rubric criteria

Example:

"Optional detailed info about this criteria"

maxScore
string

Maximum score for the criterion

Example:

"5 Star"

minScore
string

Minimum score for the criterion

Example:

"1 Star"

scoringLogic
object[]

Response

200
application/json
Rubric criteria updated successfully.
id
string

Unique identifier for the rubric criteria

Example:

"d102b0ff-1111-4235-b8e9-764ef03c57cb"

name
string

Name of the rubric criteria

Example:

"Cohesiveness"

maxScore
string

Maximum score for the criterion

Example:

"5 Star"

minScore
string

Minimum score for the criterion

Example:

"1 Star"

scoringLogic
object[]
createdAt
string

Timestamp when the rubric criteria was created

Example:

"2025-03-27T11:34:53.172550Z"

modifiedAt
string

Timestamp when the rubric criteria was last modified

Example:

"2025-03-27T11:35:17.739952Z"