GDPR Deletion

Erasing data for contacts and users by email

Erase all data for all contacts and users with a given email.

This includes:

  • attributes
  • conversations
  • messages
  • ...and much more

Ensure that this is necessary for your application. You may be looking to remove a contact instead.

❗️

WARNING: Data erasure is permanent

This call results in permanent deletion of data from our servers and cannot be undone

Overview

Method URL:https://driftapi.com/gdpr/delete
HTTP Method:POST
Content-Type:application/json
Required Scopes:gdpr_write
Arguments:email - the email of the contacts or users whose data is being erased

Example

// Request
{
  "email": "[email protected]"
}

// Response
{
    "data": {
        "message": "Your delete is processing"
    }
}