POST
/
rubrics
/
v1
/
rubric
/
{id}
/
criteria
/
curl --request POST \
  --url https://api-staging.crazygoldfish.com/rubrics/v1/rubric/{id}/criteria/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Confidence & fluency in speaking",
  "description": "Evaluates how confidently and fluently the student speaks",
  "maxScore": "5 Star",
  "minScore": "1 Star",
  "scoringLogic": [
    {
      "score": "5 Star",
      "scoringLogic": "Speaking: Reflects poise & confidence. Great body language, eye contact."
    }
  ]
}'
{
  "id": "2b973c83-2830-4712-87b7-64a8c0a99035",
  "name": "English Rubric",
  "description": "A rubric for evaluating english hand written assignment.",
  "rubricCriteria": [
    {
      "id": "d102b0ff-1111-4235-b8e9-764ef03c57cb",
      "name": "Confidence & fluency in speaking",
      "maxScore": "5 Star",
      "minScore": "1 Star",
      "scoringLogic": [
        {
          "score": "5 Star",
          "scoringLogic": "Speaking: Reflects poise & confidence. Great body language, eye contact."
        }
      ],
      "createdAt": "2025-03-27T11:34:53.172550Z",
      "modifiedAt": "2025-03-27T11:35:17.739952Z"
    }
  ],
  "createdAt": "2023-11-07T05:31:56Z",
  "modifiedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201
application/json

Rubric criteria created successfully.

The response is of type object.