Nurama Developers

update_convo

Rename a convo or update its notes.

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

Rename a convo or update its notes. Pass only the fields that change. Safe to call on active or completed convos.

Input

PropertyTypeRequiredDescription
convoIdstringyesUUID of the convo.
subjectstringnoNew title.
notesstringnoNew notes / agenda / summary text.

JSON Schema

{
  "type": "object",
  "properties": {
    "convoId": {
      "type": "string",
      "description": "UUID of the convo."
    },
    "subject": {
      "type": "string",
      "description": "New title."
    },
    "notes": {
      "type": "string",
      "description": "New notes / agenda / summary text."
    }
  },
  "required": [
    "convoId"
  ],
  "additionalProperties": false
}

On this page