Docs

Activity log

Every significant action on an entry — create, update, publish, unpublish, delete, restore — is recorded with the acting user and a timestamp.

Where to find it

Open any entry in the editor. The Meta panel on the right shows an Activity section at the bottom, listing the last 10 events in reverse chronological order.

Recorded events

EventWhen it fires
createEntry is created for the first time
updateEntry is saved without a status change
publishStatus changes from draftpublished
unpublishStatus changes from publisheddraft
deleteEntry is moved to trash
restoreEntry is restored from trash

User attribution

The username is stored directly in the audit record at write time. If a user is later deleted, their past activity remains visible — the log is never retroactively altered.

API

GET /api/collections/:collectionId/entries/:slug/activity

Returns up to 20 recent events:

[
  { "id": "…", "username": "alice", "action": "publish", "created_at": "2026-05-01 14:32:00" },
  { "id": "…", "username": "bob",   "action": "update",  "created_at": "2026-05-01 13:11:00" }
]