Proficiency Ratings
A ProficiencyRating object looks like:
{
// The description of the rating
"description": "Exceeds Mastery",
// A non-negative number of points for the rating
"points": 4,
// Indicates the rating where mastery is first achieved
"mastery": false,
// The hex color code of the rating
"color": "02672D"
}A Proficiency object looks like:
{
// An array of proficiency ratings. See the ProficiencyRating specification
// above.
"ratings": []
}Create/update proficiency ratings
POST /api/v1/accounts/:account_id/outcome_proficiency
POST /api/v1/courses/:course_id/outcome_proficiency
Request Parameters:
Parameter
Type
Description
Example Request:
Get proficiency ratings
GET /api/v1/accounts/:account_id/outcome_proficiency
GET /api/v1/courses/:course_id/outcome_proficiency
Last updated
Was this helpful?