Import Contact Permissions

I have about 400  existing records that I need to update one contact permission on. 

I was looking to see if anyone has a found a utility for the job. Can I co-opt the Migration tool? Or is using SQL my best bet? 

Parents Reply
  • Gotcha. This worked for me because I had a .csv file of all the addresses to which I wanted to add the purpose. So what I had between those parentheses was basically just this:

    (

    'address1@domain.com',

    'address2@domain.com',

    'address3@domain.com'

    )

    It wouldn't be too difficult to adapt this to look for an attribute, or an interest, or membership in a list, or whatever other data you're using as the basis for planning your purposes. I'm happy to help you with that if you'd like.

    Or if you have a way to get the addresses you want into Excel, you can quickly adjust them to include the apostrophes and the comma by changing the cell format to '@', and then paste the whole column into those empty parentheses.

Children