canvas_create_account_report
Generate detailed reports for Canvas accounts by specifying the account ID and report type, enabling effective management of courses, assignments, enrollments, and grades.
Instructions
Generate a report for an account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ID of the account | |
parameters | No | Report parameters | |
report | Yes | Type of report to generate |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "ID of the account",
"type": "number"
},
"parameters": {
"description": "Report parameters",
"type": "object"
},
"report": {
"description": "Type of report to generate",
"type": "string"
}
},
"required": [
"account_id",
"report"
],
"type": "object"
}