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.
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
{
"data": {
"AnonymizeUser": {}
}
}