Name a save
POST
/conversation/title
const url = 'https://api.harperharbor.com/open/v1/conversation/title';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"conversationId":"example","title":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.harperharbor.com/open/v1/conversation/title \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "conversationId": "example", "title": "example" }'Authorizations
Section titled “Authorizations”Request Body
Section titled “Request Body”Media typeapplication/json
object
conversationId
required
string
title
required
Empty string clears.
string
Examplegenerated
{ "conversationId": "example", "title": "example"}Responses
Section titled “Responses”Saved.