JavaScript
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}}; fetch('https://studyfetchapi.com/api/v1/assignment-grader/rubric-templates', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
[ { "_id": "<string>", "name": "<string>", "criteria": [ { "title": "<string>", "pointsPossible": 123, "description": "<string>" } ], "organizationId": "<string>", "createdBy": "<string>", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z", "description": "<string>" } ]
API Key for authentication
All rubric templates retrieved
Template ID
Template name
Grading criteria
Show child attributes
Organization ID
Created by user ID
Creation timestamp
Update timestamp
Template description
Was this page helpful?