clickup_audit_log_query
Query ClickUp workspace audit logs to track user actions, filter by event type, user, and date range for compliance and monitoring.
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 (e.g. 'task_created', 'user_added', 'permission_changed'). Required. See ClickUp docs for the full list. | |
| user_id | No | Restrict to events performed by this user ID. Obtain from clickup_member_list. Omit for all users. |