GET
/
rubrics
/
v1
/
rubric
curl --request GET \
  --url https://api-staging.crazygoldfish.com/rubrics/v1/rubric/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 20,
  "pageSize": 10,
  "showing": "Page 1 of 2",
  "next": "{{base_url}}/rubrics/v1/rubric/?page=2",
  "previous": null,
  "data": [
    {
      "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.

Response

200
application/json
List of rubrics retrieved successfully.
count
integer

Total number of assignment available.

Example:

20

pageSize
integer

Number of items displayed per page.

Example:

10

showing
string

Current page display information.

Example:

"Page 1 of 2"

next
string | null

URL for the next page of results.

Example:

"{{base_url}}/rubrics/v1/rubric/?page=2"

previous
string | null

URL for the previous page of results.

Example:

null

data
object[]