canvas_get_quiz
Retrieve detailed information about a specific quiz in a Canvas course by providing the course ID and quiz ID, enabling efficient quiz management and analysis.
Instructions
Get details of a specific quiz
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_id | Yes | ID of the course | |
quiz_id | Yes | ID of the quiz |
Input Schema (JSON Schema)
{
"properties": {
"course_id": {
"description": "ID of the course",
"type": "number"
},
"quiz_id": {
"description": "ID of the quiz",
"type": "number"
}
},
"required": [
"course_id",
"quiz_id"
],
"type": "object"
}