Documentation Index
Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Get unread message count for current user in a conversation.
| Field | Value |
|---|
| Name | get_conversation_unread_count |
| Group | Conversations |
Playground
{
"type": "object",
"properties": {
"conversation_id": {
"type": "string",
"format": "uuid",
"description": "Conversation identifier that scopes the request."
}
},
"required": [
"conversation_id"
],
"additionalProperties": false,
"description": "Input schema for the get_conversation_unread_count tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"count": {
"type": "number",
"description": "The count associated with this tool result."
}
},
"required": [
"count"
],
"additionalProperties": false,
"description": "Structured result returned by the get_conversation_unread_count tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}