DELETE /api/v2/users/{id} purges interaction history?

We’ve got a cleanup script running nightly to prune inactive agents. It’s hitting DELETE /api/v2/users/{id}. The call returns 204 No Content, which looks good. But when I query /api/v2/analytics/conversations/summary later, the data for those users is gone. I assumed the API just toggled a status flag. Is there a specific parameter to soft-delete without nuking the historical data? Here’s the curl I’m using: curl -X DELETE https://api.mypurecloud.com/api/v2/users/12345 -H ‘Authorization: Bearer ’