JavaScript
const options = { method: 'POST', headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'}, body: JSON.stringify({ name: '<string>', criteria: [{title: '<string>', pointsPossible: 123, description: '<string>'}], description: '<string>' }) }; 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
Name of the rubric template
Grading criteria
Show child attributes
Description of the rubric template
Rubric template created
Template ID
Template name
Organization ID
Created by user ID
Creation timestamp
Update timestamp
Template description
Was this page helpful?