Nurama Developers

update_ai_chat_topic

Rename an AI chat topic or toggle its archived state.

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

Rename an AI chat topic or toggle its archived state. workspaceId is required — the request is rejected if the topic does not belong to that workspace. Pass only the fields that change.

Input

PropertyTypeRequiredDescription
topicIdstringyesUUID of the AI chat topic.
workspaceIdstringyesUUID of the workspace the topic lives under.
titlestringnoNew title. min length 1
archivedbooleannoPass true to archive; false to unarchive.

JSON Schema

{
  "type": "object",
  "properties": {
    "topicId": {
      "type": "string",
      "description": "UUID of the AI chat topic."
    },
    "workspaceId": {
      "type": "string",
      "description": "UUID of the workspace the topic lives under."
    },
    "title": {
      "type": "string",
      "minLength": 1,
      "description": "New title."
    },
    "archived": {
      "type": "boolean",
      "description": "Pass true to archive; false to unarchive."
    }
  },
  "required": [
    "topicId",
    "workspaceId"
  ],
  "additionalProperties": false
}

On this page