mark_conversations_read
Mark multiple Canvas conversations as read to clear unread notifications and maintain organized communication within the learning management system.
Instructions
Mark multiple conversations as read.
Args:
conversation_ids: List of conversation IDs to mark as read
Returns:
Result of the batch operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversation_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"conversation_ids": {
"items": {
"type": "string"
},
"title": "Conversation Ids",
"type": "array"
}
},
"required": [
"conversation_ids"
],
"type": "object"
}