# Clear user feed cache Removes cached feed data from Redis for specified user(s). If no user is specified, clears all cached feeds. Use with caution as this will force feed regeneration on next access. Returns the number of Redis keys deleted. RBAC: requires Jobs.Manage Endpoint: POST /api/v1/admin/feed/clear-user-feed Version: 1.0 Security: ## Query parameters: - `ownerType` (string,null) Specific owner type to clear cache for (default: all types) Enum: "USER", "EVENT", "CATEGORY" - `userId` (string,null) User ID to clear feed cache for (default: all users) Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `username` (string,null) Username to clear feed cache for (alternative to userId) Example: "jane_doe" ## Response 403 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation