This guide covers the multiple ways of making a CSV upload to delete user attributes in bulk for your users. Additionally, it covers the format of the CSV file required.
CSV file format:
- Plain text:
userId,userAttributes
user1,"{attribute1:null}"
user2,"{attribute1:null,attribute2:null}"
user3,"{attribute3:null}" - Table view:
userId userAttributes user1 "{attribute1:null}" user2 "{attribute1:null,attribute2:null}" user3 "{attribute3:null}" - Check all requirements for a valid file here
CSV upload methods:
- Audiences page uploader
- Leanplum API CSV upload process
- Fast API method for up to 50 users at a time