GDPR Retrieval
Requesting data for contacts and users by email
Request all data for a contact or user by email.
Upon completion, requested data will be emailed to the owner of the Drift organization.
Overview
Method URL: | https://driftapi.com/gdpr/retrieve |
HTTP Method: | POST |
Content-Type: | application/json |
Required Scopes: | gdpr_read |
Arguments: | email - the email of the contact or user whose data is being requested |
Example
// Request
{
"email": "[email protected]"
}
// Response
{
"data": {
"message": "Your request is processing. When the data is gathered, it will be sent in an email to your_admin@your_website.com",
"sentToEmail": "your_admin@your_website.com"
}
}
Updated over 3 years ago