Skip to main content
PATCH
/
api
/
v1
/
memories
/
conversation-meta
Partially update conversation metadata
curl --request PATCH \
  --url https://api.example.com/api/v1/memories/conversation-meta \
  --header 'Content-Type: application/json' \
  --data '
{
  "group_id": "group_123",
  "name": "New Conversation Name",
  "tags": [
    "updated",
    "tags"
  ]
}
'
{
  "status": "ok",
  "message": "Conversation metadata updated successfully",
  "result": {
    "id": "507f1f77bcf86cd799439011",
    "group_id": "group_123",
    "name": "New conversation name",
    "updated_fields": [
      "name",
      "tags"
    ]
  }
}

Body

application/json

Partial update conversation metadata request body

Used for PATCH /api/v1/memories/conversation-meta endpoint

group_id
string
required

Group ID to update (required)

Example:

"group_123"

name
string | null

New conversation name

Example:

"New Conversation Name"

description
string | null

New conversation description

Example:

"Updated description"

scene_desc
Scene Desc · object

New scene description

Example:
{ "bot_ids": ["bot_002"] }
tags
string[] | null

New tag list

Example:
["tag1", "tag2"]
user_details
User Details · object

New user details (will completely replace existing user_details)

Example:
{
"user_001": { "full_name": "John Smith", "role": "lead" }
}
default_timezone
string | null

New default timezone

Example:

"Asia/Shanghai"

Response

Successfully updated conversation metadata

The response is of type Response Patch Conversation Meta Api V1 Memories Conversation Meta Patch · object.