## Bulk Delete **delete** `/v1/feedback-records` Permanently deletes all feedback record data points matching the specified user_identifier. This endpoint supports GDPR Article 17 (Right to Erasure) requests. ### Query Parameters - `user_identifier: string` Delete all records matching this user identifier (required). NULL bytes not allowed. - `tenant_id: optional string` Filter by tenant ID (optional, for multi-tenant deployments). NULL bytes not allowed. ### Returns - `deleted_count: number` Number of records deleted - `message: string` Human-readable status message ### Example ```http curl http://localhost:8080/v1/feedback-records \ -X DELETE \ -H "Authorization: Bearer $HUB_API_KEY" ```