Nurama Developers

update_member_chat

Update a member chat's subject or color.

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

Update a member chat's subject or color. Pass only the fields that change. For topic chats (auto-created project / asset chats) use update_chat_subject instead.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the member chat.
subjectstringnoNew title. min length 1
colorstringnoNew hex color (e.g. #FF6B35).

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the member chat."
    },
    "subject": {
      "type": "string",
      "minLength": 1,
      "description": "New title."
    },
    "color": {
      "type": "string",
      "description": "New hex color (e.g. `#FF6B35`)."
    }
  },
  "required": [
    "chatId"
  ],
  "additionalProperties": false
}

On this page