Skip to main content
PATCH
/
v1
/
api
/
conversations
/
{id}
Rename a conversation
curl --request PATCH \
  --url https://api.hq.zone/v1/api/conversations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>"
}
'
{
  "conversation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title_is_custom": true,
  "title": "<string>"
}

Authorizations

Authorization
string
header
required

Personal Access Token. Send as Authorization: Bearer hq_pat_....

Path Parameters

id
string<uuid>
required

Conversation id

Body

application/json
title
string
required

New title. Trimmed; empty/whitespace reverts the conversation to auto-derived (clears the title + the custom flag so the worker re-derives on the next turn).

Response

Renamed

conversation_id
string<uuid>
required
title_is_custom
boolean
required
title
string | null