ChatConversationEvents
Last updated
$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('GET', '/api/chat/conversations/1/events', [
'headers' => ['Authorization' => "Bearer {accessToken}"]
]);[
{
"id": 1,
"user_id": 3,
"chat_conversation_id": 1,
"type": "titleChanged",
"data": {
"old": "Launch",
"new": "Project launch"
},
"created_at": "2026-08-06 09:32:00",
"updated_at": "2026-08-06 09:32:00"
},
{
"id": 2,
"user_id": 4,
"chat_conversation_id": 1,
"type": "lockedAtChanged",
"data": {
"old": null,
"new": "2026-08-06 10:00:00"
},
"created_at": "2026-08-06 09:34:00",
"updated_at": "2026-08-06 09:34:00"
}
]$client = new GuzzleHttp\Client(['base_uri' => 'https://{tenant}.intratool.de']);
$response = $client->request('GET', '/api/chat/conversations/events/1', [
'headers' => ['Authorization' => "Bearer {accessToken}"]
]);{
"id": 1,
"user_id": 3,
"chat_conversation_id": 1,
"type": "titleChanged",
"data": {
"old": "Launch",
"new": "Project launch"
},
"created_at": "2026-08-06 09:32:00",
"updated_at": "2026-08-06 09:32:00"
}