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.
DELETE
https://example.thoughtindustries.com/incoming/v2/users/:idExample request
curl -X DELETE "https://example.thoughtindustries.com/incoming/v2/users/:id" \
-H 'Authorization: Bearer YOUR_API_KEY'Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
id | uuid | Yes | path | The unique identifier of the user to anonymize and delete. |
Example response
{
"deleted": true
}Response fields
| Field | Type | Description |
|---|---|---|
deleted | boolean | Indicates the user was anonymized and deleted. |