Skip to main content
POST
/
api
/
user
/
forget
Forget a user (GDPR)
curl --request POST \
  --url https://api-eu-w-1.pureclarity.net/api/user/forget \
  --header 'Content-Type: application/json' \
  --data '
{
  "AccessKey": "your-access-key",
  "SecretKey": "your-secret-key",
  "Identifier": "user@example.com"
}
'
"The request was submitted successfully"

Body

application/json
AccessKey
string
required

Your store's unique access key

SecretKey
string
required

Your store's secret key

Identifier
string
required

The user identifier to forget. This can be an email address, user ID, or any other identifier associated with the user in PureClarity.

Response

Forget request submitted successfully

The response is of type string.

Example:

"The request was submitted successfully"