Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Contact Us
  • Home
  • Account Management
  • Users & Data

GDPR Deletion API

Use this API to upload a list of user IDs whose data should be scrubbed.

Written by Sofia Domingues

Updated at June 11th, 2025

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Installation & Developers
    Installing Appcues Web Installing Appcues Mobile API & Data Troubleshooting Extras
  • Installation & Developers
    Installing Appcues Web Installing Appcues Mobile API & Data Troubleshooting Extras
  • Web Experiences
    Building Web Experiences Targeting Studio Customization & Styling Use Cases Troubleshooting FAQ
  • Mobile Experiences
    Installation & Overview Building Mobile Experiences Mobile Analytics & Integrations Troubleshooting
  • Workflows
    Building & Configuration Use Cases Workflow Analytics and Integrations
  • Account Management
    Subscription Users & Data
  • Analytics
    Experience and Event Analytics Data
  • Best Practices
    Best Practices Use Cases Pro Tips Product-led Growth
  • Integrations
    Integration Documents Use Cases Extras
+ More
  • Home

  • Installation & Developers

    • Installation & Developers

      • Web Experiences

        • Mobile Experiences

          • Workflows

            • Account Management

              • Analytics

                • Best Practices

                  • Integrations

                    The General Data Protection Regulation (GDPR) is a European law that ensures several rights for people whose data crosses EU borders. Among these rights are the right to erasure. Under this right, a user may demand that a data processor delete all data about them.

                    Appcues has happily complied with the GDPR since its inception in May 2018. We respect the rights it guarantees, and offer this functionality for not only for EU residents but all users of the Appcues platform.

                    In order to make it easier for our customers to comply with the GDPR, Appcues has set up a GDPR Deletion API for customers wishing to schedule the deletion of end user data. This API makes it possible for an Appcues customer to upload a list of user IDs whose data should be scrubbed.

                    The API is usable from any programming language or environment that supports making HTTP POST requests. We'll provide examples using the popular Curl command-line tool.

                    First, you'll need your Legacy API key from the API Keys page (Also called the API Key on the account settings page for legacy plan customers). We'll pretend it's "super-secret-key" for these examples.

                    To schedule users for deletion, you will make a POST request to https://api.appcues.com/v1/gdpr/delete. Provide your Legacy API key as the HTTP Basic Auth username, with a blank password.

                    Uploading user IDs as JSON

                    To pass a list of user IDs in JSON format, the request looks like this:

                    curl https://api.appcues.com/v1/gdpr/delete \
                     -u super-secret-key: \
                     -H 'Content-type: application/json' \
                     -d '{"users": ["user_id_1", "user_id_2", "user_id_3"]}'
                    

                    The user IDs should be the same as what you use in our SDK,
                    e.g.: Appcues.identify("user_id_1", { ... });

                    You will receive a response like this:

                    {"ok":true,"message":"accepted 3 users for deletion"}
                    

                    Uploading user IDs as CSV

                    You can also upload a file of user IDs in CSV format. This CSV should contain a single column of user IDs, and nothing else. The CSV must be under 8 MB in size, and should be uploaded as a multipart file upload, as demonstrated by the following Curl request (assuming the file is called " users.csv"):

                    curl https://api.appcues.com/v1/gdpr/delete \
                     -u super-secret-key: \
                     -F 'data=@users.csv'
                    

                    The response will be in the same form as the JSON request.

                    Next steps

                    There are no next steps -- you are done! Once you see the response that Appcues has accepted your deletion requests, the deletions will be scheduled and carried out within the 30 day window guaranteed by GDPR.

                    Was this article helpful?

                    Yes
                    No
                    Give feedback about this article

                    Related Articles

                    • Welcome and Getting Started
                    • Manage Your Account & Team
                    • Appcues Sign In Update
                    • Configure your Account Identifier and User Identifier
                    DON'T TAKE OUR WORD FOR IT

                    Start building with Appcues for free

                    Try before you buy
                    No credit card required
                    Support included
                    Start building for freeBook a demo
                    or take an interactive tour
                    Appcues logo

                    Product

                    In-app messaging
                    Email
                    Push notifications
                    Workflows
                    Data
                    How it works
                    Pricing
                    What's new

                    Use cases

                    Onboarding
                    Free-trial conversion
                    Feature adoption
                    Feedback
                    Support

                    Integrations

                    Why connect
                    All integrations
                    All workflows

                    Company

                    About
                    Careers
                    HIRING
                    Why Appcues
                    Teams
                    Customers

                    Support

                    Request a demo
                    Start free trial
                    Developer Docs
                    Help Center
                    Customer Success
                    Contact

                    Resources

                    Product Adoption Academy
                    Courses
                    Workshops
                    Templates
                    Examples
                    Made with Appcues
                    The Appcues Blog
                    PLG Collective
                    Product-led Experience Report
                    The Product Experience Playbook
                    The Product-Led Growth Flywheel
                    © 2025 Appcues. All rights reserved.
                    SecurityTerms of ServiceWebsite Terms of UsePrivacy PolicyCookie Preferences
                    Expand