Speaker-context agent health
GET
/speaker-context/health
const url = 'https://my-instance.example.com/speaker-context/health';const options = {method: 'GET', 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 GET \ --url https://my-instance.example.com/speaker-context/health \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”The agent’s last-run state and cached meeting versions.
Media type application/json
object
ok
boolean
state
object
key
additional properties
any
cachedMeetingVersions
integer
Example generated
{ "ok": true, "state": {}, "cachedMeetingVersions": 1}The bearer token is missing or wrong.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "Unauthorized"}