Deletes a user
HardDelete:
Default behavior is to mark the user as deleted, which will cause it to be hidden in the application. If a user with the same id is created or updated within the next 7 days, the previously deleted record will be revived with all of its associated event history. Conversely, if a user with the same ID is created after 7 days, a totally new record with no event history will be created. To disable the current record from being revived in the future, set the hardDelete flag to true
DELETE
/v1/users/{identifyId}
curl \
--request DELETE 'https://api.aptrinsic.com/v1/users/{identifyId}'
Response examples (200)
{
"body": {},
"statusCode": "100",
"statusCodeValue": 42
}
Response examples (204)
{
"body": {},
"statusCode": "100",
"statusCodeValue": 42
}