Close a Health Navigator conversation
PATCH
/v2/health-navigator/conversations/close
const url = 'https://example.com/v2/health-navigator/conversations/close';const options = { method: 'PATCH', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"conversationId":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/v2/health-navigator/conversations/close \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "conversationId": "example" }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
conversationId
required
string
Examplegenerated
{ "conversationId": "example"}Responses
Section titled “Responses”Conversation closed.
