Home / Insights
Build note

How an n8n workflow tracks Discord identity changes.

State, history, alerts, and a human moderation loop.

Why identity history matters

In a growing community, display-name changes make manual impersonation checks slow and inconsistent. The workflow creates a durable identity trail instead of relying on memory or screenshots.

Two-table design

One table stores the latest known member state. A second appends every detected identity change. This keeps current lookups fast while preserving audit history.

Hourly operation

  1. Fetch server members.
  2. Compare usernames and nicknames with stored state.
  3. Update current records.
  4. Append changed fields to history.
  5. Alert moderators when protected identities need review.

Human control

The automation surfaces evidence; moderators make the final judgment. This is safer than automatic punishment based on a name similarity alone.