CHW-4519 AuditExportTooLarge

audit export refused: this org has more rows than the in-memory export endpoint can safely return; use the (forthcoming) streaming /api/audit/export?cursor=… endpoint, or narrow the window with -…

Default message: audit export refused: this org has more rows than the in-memory export endpoint can safely return; use the (forthcoming) streaming /api/audit/export?cursor=… endpoint, or narrow the window with –since/–start/–end
HTTP status: 413 (client)

Problem. GET /api/audit/logs?export=true was rejected. Cause. The org’s audit row count exceeds the in-memory export ceiling of 50,000 rows. 413 surfaces a clear actionable error instead of OOM-ing the server while it builds the entire payload in memory. Fix. Use the paginated audit-view UI for the time being; a streaming /api/audit/export?cursor=… endpoint is tracked as a TODO. HTTP 413.