Skip to main content
GET
/
v1
/
chats
/
{chatId}
/
messages
/
events
{
  "chatId": "<string>",
  "eventId": "<string>",
  "toolName": "<string>",
  "content": "<string>",
  "toolArgs": {},
  "toolResponse": {},
  "status": "inProgress"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

chatId
string
required

Response

200 - application/json

Einzelnes MessageEventDto (wird als SSE-Event gesendet)

chatId
string

ID des Chats

eventId
string

ID des Events

toolName
string

Name des Tools, das verwendet wurde

content
string

Inhalt der Nachricht oder Eventbeschreibung

toolArgs
object

Optionales Objekt mit Parametern, die an das Tool übergeben wurden

toolResponse
object

Optionales Objekt mit der Antwort vom Tool

status
enum<string>

Status des Events

Available options:
inProgress,
completed,
failed
I