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

Anonymize

Anonymizes and deletes a user by ID. All personally identifiable information is removed. Returns `{ "deleted": true }` on success

Anonymizes and deletes a user by ID. All personally identifiable information is removed. Returns { "deleted": true } 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

{
  "deleted": true
}

Response fields

FieldTypeDescription
deletedbooleanIndicates the user was anonymized and deleted.