Partially update conversation metadata, only updating provided fields
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Partial update conversation metadata request body
Used for PATCH /api/v1/memories/conversation-meta endpoint
Group ID to update. When null, updates the default config.
"group_123"
New conversation name
"New Conversation Name"
New conversation description
"Updated description"
New scene description
{
"description": "Project discussion group chat"
}New tag list
["tag1", "tag2"]New user details (will completely replace existing user_details)
{
"user_001": {
"custom_role": "lead",
"full_name": "John Smith",
"role": "user"
}
}New default timezone
"Asia/Shanghai"
Successful Response
Patch conversation metadata API response
Response for PATCH /api/v1/memories/conversation-meta endpoint.
Patch result with updated fields
{
"group_id": "group_123",
"id": "507f1f77bcf86cd799439011",
"name": "New conversation name",
"scene": "group_chat",
"updated_at": "2025-01-15T10:30:00+00:00",
"updated_fields": ["name", "tags"]
}Response status
"ok"
"failed"
Response message
"Operation successful"