Skip to main content
Entri records a detailed activity log for every significant action taken in the platform — whether by a user in the web app, an API client, or the CLI. The activity endpoints give you programmatic access to this audit trail for compliance, debugging, and transparency. Every activity entry captures:
  • The action type (for example key.created, translation.approved, project.updated)
  • The user who performed the action and their display name
  • The project and organization context
  • The target resource and any relevant metadata
  • A precise timestamp
Activity logs are append-only and cannot be modified or deleted through the API.

Endpoints

Get Project Activity

Returns the activity feed for a specific project, ordered newest first:
Query parameters: Response:
The timestamp field is created, not createdAt.

Get Organization Activity

Returns the combined activity feed across all projects in the organization:
You can filter to a specific user with userId, or filter to a specific action type with action.

Filter by Action Type

Use the action query parameter to filter the log to a specific event type:
Valid action filter values:

Key Notes

  • Activity log entries are paginated. See Pagination for details.
  • Entries are immutable. The activity log is an append-only audit trail.
  • The metadata field contains action-specific detail. Its schema varies by action type.
  • Activity data is typically available within a few seconds of the action occurring.