Create or full update conversation metadata information, including scene, participants, tags, etc.
Save conversation metadata request body
Used for POST /api/v1/memories/conversation-meta endpoint
Metadata version number
"1.0"
Scene identifier, enum values from ScenarioType:
"group_chat"
Scene description object, can include fields like bot_ids
{
"bot_ids": ["bot_001"],
"type": "project_discussion"
}Conversation name
"Project Discussion Group"
Group unique identifier
"group_123"
Conversation creation time (ISO 8601 format)
"2025-01-15T10:00:00+00:00"
Conversation description
"Technical discussion for new feature development"
Default timezone
"UTC"
Participant details, key is user ID, value is user detail object
{
"user_001": {
"extra": { "department": "Engineering" },
"full_name": "John Smith",
"role": "developer"
},
"user_002": {
"extra": { "department": "Design" },
"full_name": "Jane Doe",
"role": "designer"
}
}Tag list
["work", "technical"]Successful Response
The response is of type Response Save Conversation Meta Api V1 Memories Conversation Meta Post · object.