Conversations
Get events for a message
Get events for a message in the workspace identified by {wId}.
get/api/v1/w/{wId}/assistant/conversations/{cId}/messages/{mId}/events
Path parameters
wIdstring required
ID of the workspace
cIdstring required
ID of the conversation
mIdstring required
ID of the message
Query parameters
lastEventIdstring
ID of the last event received
Response
The events
Example response
{
"events": [
{
"data": {
"content": "This is my message",
"mentions": [
{
"configurationId": "7f3a9c2b1e"
}
],
"context": {
"username": "johndoe123",
"timezone": "America/New_York",
"fullName": "John Doe",
"email": "john.doe@example.com",
"profilePictureUrl": "https://example.com/profiles/johndoe123.jpg",
"agenticMessageData": {
"originMessageId": "2b8e4f6a0c"
}
},
"modelSelection": {
"providerId": "anthropic",
"modelId": "claude-sonnet-4-20250514",
"reasoningEffort": "medium"
}
}
}
]
}