join_convo
Join an active live conversation.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Join an active live conversation. Returns the convo + a Daily.co meeting token the client uses to enter the room. Sends "user joined" notifications to other participants. Use rejoin_convo instead for page-refresh / reconnect flows so notifications are not re-fired.
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
}