Update a thread’s title.
curl --request PATCH \
--url https://app.mavera.io/api/v1/mave/threads/{threadId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>"
}
'{
"id": "<string>",
"object": "mave_thread",
"title": "<string>",
"current_phase": "TRIAGE",
"complexity": "SIMPLE",
"credits_used": 123,
"workspace_id": "<string>",
"message_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}API key prefixed with mvra_live_. Create keys at Settings > Developer > API Keys.
Thread ID
New title for the thread
100Thread updated
A Mave conversation thread
Unique thread identifier
mave_thread Thread title
Current orchestration phase
TRIAGE, PLANNING, RESEARCH, EXECUTION, VALIDATION Query complexity classification
SIMPLE, MODERATE, COMPLEX, STRATEGIC Total credits used
Workspace ID
Number of messages
curl --request PATCH \
--url https://app.mavera.io/api/v1/mave/threads/{threadId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>"
}
'{
"id": "<string>",
"object": "mave_thread",
"title": "<string>",
"current_phase": "TRIAGE",
"complexity": "SIMPLE",
"credits_used": 123,
"workspace_id": "<string>",
"message_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}