recent_events
Return the most recent custom events for a specific project, optionally filtered to one event name and/or one user. PII (userEmail, userName, props) is redacted by default; pass redact: false to include them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Optional event name to filter by (e.g. 'signup_completed'). Omit to return events of any name. | |
| user | No | Optional. Filter to one visitor/user. Accepts userEmail (case-insensitive) or visitorId (exact). For the full per-user snapshot prefer user_activity. | |
| limit | No | Maximum number of events to return. Default 20, max 100. | |
| redact | No | If true (default), userEmail/userName are null and props is {}. Set to false to include them. | |
| project | Yes | Project name (case-insensitive, e.g. 'slopbench') or project id from list_projects. |