Nurama Developers

complete_convo

End a live conversation for everyone — closes the Daily.co room, stamps `endedAt`, transitions status to `completed`, and triggers recording / transcript post-processing if those features were enabled

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

End a live conversation for everyone — closes the Daily.co room, stamps endedAt, transitions status to completed, and triggers recording / transcript post-processing if those features were enabled. Use when wrapping up a huddle. Not destructive (history + recordings stay); for that, use delete_convo (Phase F).

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