Chat Status
GET
/api/chat/_status
const url = 'https://example.com/api/chat/_status';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/chat/_statusHealth check endpoint for chat system.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example