Close a consultation
PATCH
/consultation/{consultationId}/close
const url = 'https://example.com/consultation/example/close';const options = {method: 'PATCH', 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 PATCH \ --url https://example.com/consultation/example/close \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”consultationId
required
string
Responses
Section titled “Responses”Consultation closed.
