Deletes a user with identifyId specified in delete body This delete method is useful when the identify ID contains special characters that make it impossible to use the delete method with the identifyId in the request path.
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
Query parameters
-
Hard delete, do not revive if created/updated again in 7 day window
Default value is
false.
curl \
--request DELETE 'https://api.aptrinsic.com/v1/users/delete' \
--header "Content-Type: application/json" \
--data '{"identifyId":"string"}'
{
"identifyId": "string"
}
{
"body": {},
"statusCode": "100",
"statusCodeValue": 42
}
{
"body": {},
"statusCode": "100",
"statusCodeValue": 42
}