Nurama Developers

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

PropertyTypeRequiredDescription
convoIdstringyesUUID of the convo.

JSON Schema

{
  "type": "object",
  "properties": {
    "convoId": {
      "type": "string",
      "description": "UUID of the convo."
    }
  },
  "required": [
    "convoId"
  ],
  "additionalProperties": false
}

On this page