Skip to content

Rename a conversation (REQ-2.5).

PATCH
/api/advisor/conversations/{id}
curl --request PATCH \
--url https://api.tradr.cloud/api/advisor/conversations/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \
--header 'Content-Type: application/json' \
--data '{ "title": "example" }'

Updates the conversation title (1–200 chars; whitespace-only rejected) and bumps updatedAt. 404 if the conversation does not exist OR is owned by another user (identical envelope — no leak).

id
required
string format: uuid
Media typeapplication/json
object
title
required
string
>= 1 characters <= 200 characters
Examplegenerated
{
"title": "example"
}

The updated conversation.

Invalid title.

Conversation not found (or not owned).