Rewrite one message by id
POST
/conversation/rewrite-by-id
const url = 'https://api.harperharbor.com/open/v1/conversation/rewrite-by-id';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
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/rewrite-by-id \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Accepted.