delete_rubric
Remove a rubric from a Canvas course and eliminate all its associations to maintain clean course organization.
Instructions
Delete a rubric and remove all its associations.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
rubric_id: The ID of the rubric to delete
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
rubric_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"rubric_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Rubric Id"
}
},
"required": [
"course_identifier",
"rubric_id"
],
"type": "object"
}