get_convo
Fetch a single live conversation (video / audio huddle) by id.
Read-only tool.
Fetch a single live conversation (video / audio huddle) by id. Returns subject, status, host chat reference, participants, recordings / transcripts (asset refs only, no signed URLs), timing. Use this to inspect a finished convo before linking its recording into a chat, or to confirm a convo is still active before joining.
Input
| Property | Type | Required | Description |
|---|---|---|---|
convoId | string | yes | UUID of the convo. |
JSON Schema
{
"type": "object",
"properties": {
"convoId": {
"type": "string",
"description": "UUID of the convo."
}
},
"required": [
"convoId"
],
"additionalProperties": false
}