Skip to main content
https://.thoughtindustries.com

Anonymize

Anonymizes and deletes a user by ID. All personally identifiable information is removed. Returns an empty `AnonymizeUser` object on success

Anonymizes and deletes a user by ID. All personally identifiable information is removed. Returns an empty AnonymizeUser object on success.

DELETEhttps://example.thoughtindustries.com/incoming/v2/users/:id

Example request

curl -X DELETE "https://example.thoughtindustries.com/incoming/v2/users/:id" \
  -H 'Authorization: Bearer YOUR_API_KEY'

Parameters

NameTypeRequiredLocationDescription
iduuidYespathThe unique identifier of the user to anonymize and delete.

Example response

{
  "data": {
    "AnonymizeUser": {}
  }
}