clickup_audit_log_query
Retrieve ClickUp audit log events for a workspace, filtered by event type, acting user, and date range. Provides visibility into user actions for security audits.
Instructions
Query the ClickUp audit log (who did what, when) for a workspace — filter by event type, acting user, and date range. Requires Enterprise plan. Uses v3 cursor pagination. Returns an array of audit event objects (actor, event, target, timestamp).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_date | No | Inclusive upper bound as a Unix timestamp in milliseconds. Omit for no upper bound. | |
| start_date | No | Inclusive lower bound as a Unix timestamp in milliseconds (e.g. 1735689600000 for 2025-01-01). Omit for no lower bound. | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. | |
| type | Yes | Audit event type filter. Required. ClickUp's documented categories include 'AUTH', 'HIERARCHY', 'USER', 'CUSTOM_FIELDS', 'AGENT', 'OTHER'. See ClickUp docs for the full enum. | |
| user_id | No | Restrict to events performed by this user ID. Obtain from clickup_member_list. Omit for all users. |