send_conversation
Send messages to students through Canvas conversations, supporting individual or group messaging with attachments and bulk delivery options.
Instructions
Send messages to students via Canvas conversations.
Args:
course_identifier: Canvas course ID or code
recipient_ids: List of Canvas user IDs to send to
subject: Message subject line (max 255 characters)
body: Message content (required)
group_conversation: If True, creates group conversation (required for custom subjects)
bulk_message: If True, sends individual messages with same subject to each recipient
context_code: Course context (e.g., "course_60366")
mode: "sync" or "async" for bulk messages (>100 recipients should use async)
force_new: Force creation of new conversation even if one exists
attachment_ids: Optional list of attachment IDs
Returns:
Dict with conversation details or batch operation status
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| attachment_ids | No | ||
| body | Yes | ||
| bulk_message | No | ||
| context_code | No | ||
| course_identifier | Yes | ||
| force_new | No | ||
| group_conversation | No | ||
| mode | No | sync | |
| recipient_ids | Yes | ||
| subject | Yes |