cURL
curl --request PATCH \ --url https://www.itsconvo.com/api/v1/conversations/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "title": "Updated Meeting Title" } '
{ "data": { "id": "sess_a1b2c3", "title": "Updated Meeting Title" } }
Update the conversation title.
API key as Bearer token. Generate keys in your Convo dashboard settings.
Conversation session ID
New conversation title
"Updated Meeting Title"
Conversation updated
Was this page helpful?