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
| Property | Type | Required | Description |
|---|---|---|---|
chatId | string | yes | UUID of the member chat. |
subject | string | no | New title. min length 1 |
color | string | no | New 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
}