create_announcement
Create and schedule course announcements in Canvas by specifying title, message, and optional posting/lock dates for targeted student communication.
Instructions
Create a new announcement for a course with optional scheduling.
Args:
course_identifier: The Canvas course code (e.g., badm_554_120251_246794) or ID
title: The title/subject of the announcement
message: The content/body of the announcement
delayed_post_at: Optional ISO 8601 datetime to schedule posting (e.g., "2024-01-15T12:00:00Z")
lock_at: Optional ISO 8601 datetime to automatically lock the announcement
Input Schema
Name | Required | Description | Default |
---|---|---|---|
course_identifier | Yes | ||
delayed_post_at | No | ||
lock_at | No | ||
message | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"delayed_post_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Delayed Post At"
},
"lock_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Lock At"
},
"message": {
"title": "Message",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"course_identifier",
"title",
"message"
],
"type": "object"
}