LIST - Rubric
This API allows authenticated users to retrieve a paginated list of rubrics they have created.
Key Notes:
- Supports pagination with metadata like
count,pageSize,next, andprevious. - Each rubric object includes fields like
id,name,description,createdAt,modifiedAt, andrubricCriteria.
Scenario: Viewing Available Rubrics
A teacher wants to see all the rubrics they’ve created to select one for a new assignment.
Outcome:
- The teacher sends a GET request.
- The API responds with a list of rubrics along with pagination info.
- The teacher can choose and manage existing rubrics efficiently.
GET
Get Rubric List
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
List of rubrics retrieved successfully.
Total number of assignment available.
Example:
20
Number of items displayed per page.
Example:
10
Current page display information.
Example:
"Page 1 of 2"
URL for the next page of results.
Example:
"{{base_url}}/rubrics/v1/rubric/?page=2"
URL for the previous page of results.
Example:
null
Get Rubric List