get_assignment
Retrieve detailed Canvas assignment information including descriptions, submission requirements, and embedded links using course and assignment IDs.
Instructions
Retrieves detailed information about a specific assignment, including its description, submission requirements, and embedded links.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| courseId | Yes | Course ID | |
| assignmentId | Yes | Assignment ID | |
| formatType | No | Format type: full (HTML), plain (text only), or markdown (formatted) | markdown |
Input Schema (JSON Schema)
{
"properties": {
"assignmentId": {
"description": "Assignment ID",
"type": [
"string",
"number"
]
},
"courseId": {
"description": "Course ID",
"type": [
"string",
"number"
]
},
"formatType": {
"default": "markdown",
"description": "Format type: full (HTML), plain (text only), or markdown (formatted)",
"enum": [
"full",
"plain",
"markdown"
],
"type": "string"
}
},
"required": [
"courseId",
"assignmentId"
],
"type": "object"
}