Nurama Developers

update_chat_subject

Rename a chat.

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

Rename a chat. Applies to topic chats and member chats alike. Use after a chat has evolved past its original topic, or when its auto-generated subject is too generic.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the chat.
subjectstringyesThe new subject / title. min length 1

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the chat."
    },
    "subject": {
      "type": "string",
      "minLength": 1,
      "description": "The new subject / title."
    }
  },
  "required": [
    "chatId",
    "subject"
  ],
  "additionalProperties": false
}

On this page