Path parameters

  • id integer Required

    The chatroom id

Responses

  • 200 application/json

    Returns the chatroom summaries generated by AI

    Hide response attributes Show response attributes object
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
  • Forbidden - You don't have permission to access this route

GET /manager/chatrooms/{id}/summaries
curl \
 -X GET https://domain.tld/api/v2/manager/chatrooms/{id}/summaries \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "date_insert": "string",
    "summary": "string",
    "anomaly": 42,
    "topic": 42
  }
]
Response examples (401)
{
  "message": "Unauthorized."
}