mark_messages_as_seen
Mark all messages in a conversation thread as read to maintain organized communication tracking and clear unread message indicators.
Instructions
Mark messages in a thread as seen
This marks all messages in a specific conversation thread as read/seen.
Args: user_id: User ID account_id: Account ID thread: Thread ID to mark as seen
Returns: Success confirmation
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| thread | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"thread": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"thread"
],
"type": "object"
}