GDPR and CCPA User Privacy API
In order to ensure that our customers can adhere to end-user data deletion request mandated by global privacy laws such as GDPR and CCPA, we have built a simple and easy-to-use API endpoint that allows you to programmatically submit requests to delete all data collected for a user.
This process is irreversible. It will remove all data for this user and will prevent data collection for this user going forward.
You can submit a request to remove data belonging to a user by posting their email address. A valid request will return a request_id, this ID can be used to check on the status of the deletion. We aim to delete all data within 60 minutes of a request but some requests may take up to 24 hours.
POST /privacy/removal_request
Parameter | Example |
---|---|
Header | Example |
---|---|
Authorization | Bearer AbCdEf123456 |
Parameter | Example |
---|---|
request_id | fn348d2idm41n49c |
You can check the status of a removal request by using the request_id.
GET /privacy/removal_request/:request_id
Header | Example |
---|---|
Authorization | Bearer AbCdEf123456 |
Parameter | Example |
---|---|
status | completed |