get_conversation_details
Retrieve detailed Canvas conversation information including messages by providing the conversation ID, with options to automatically mark as read and include all messages.
Instructions
Get detailed conversation information with messages.
Args:
conversation_id: ID of the conversation to retrieve
auto_mark_read: Automatically mark conversation as read when viewed
include_messages: Include all messages in the conversation
Returns:
Detailed conversation information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_mark_read | No | ||
conversation_id | Yes | ||
include_messages | No |
Input Schema (JSON Schema)
{
"properties": {
"auto_mark_read": {
"default": true,
"title": "Auto Mark Read",
"type": "boolean"
},
"conversation_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Conversation Id"
},
"include_messages": {
"default": true,
"title": "Include Messages",
"type": "boolean"
}
},
"required": [
"conversation_id"
],
"type": "object"
}