POST
/
rubrics
/
v1
/
rubric
/
curl --request POST \
  --url https://api-staging.crazygoldfish.com/rubrics/v1/rubric/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "English Rubric",
  "description": "A rubric for evaluating english hand written assignment."
}'
{
  "id": "2b973c83-2830-4712-87b7-64a8c0a99035",
  "name": "English Rubric",
  "description": "A rubric for evaluating english hand written assignment.",
  "rubricCriteria": [],
  "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 created successfully.

The response is of type object.