Users
Anonymize the User
This method is useful when you need to anonymize user data for GDPR compliance.
curl --request DELETE \
--url https://changelogfy.com/api/v1/users/privacy \
--header 'Accept: application/json' \
--header "Authorization: Bearer ${TOKEN}" \
--header 'Content-Type: application/json' \
--header "x-project-token: ${YOUR_APP_ID}" \
--data '{
"user_id": "USER_ID"
}'
{
"status": "success",
"message": "User anonymized successful."
}