Activity Recorded

Emitted when any action or change is recorded in the activity log

Overview

The ActivityRecorded event captures all actions for audit trail and activity feeds.

Example Payload

{
"eventId": "evt_activity_999",
"eventType": "ActivityRecorded",
"timestamp": "2025-12-11T18:30:00Z",
"version": "1.0.0",
"data": {
"activityId": "act_xyz789",
"activityType": "task_status_changed",
"workspaceId": "ws_acme_corp",
"taskId": "task_12345",
"actor": {
"userId": "usr_jane_smith",
"name": "Jane Smith"
},
"changes": {
"field": "status",
"oldValue": "in_progress",
"newValue": "done"
},
"recordedAt": "2025-12-11T18:30:00Z"
}
}