However, you could write a script to do this with EPASSoap. You can view/download the document here:
Basically, you'd log in as an app user, get the session key, and then use that session key to log in each end user and delete the contact for each end user in the end user's groups. Here's some pseudo-code for how to do it:
sessionkey = login appuser
foreach (enduser) {
end-user-session-key = login end user with appuser sessionkey
foreach (group) {
delete contact using end-user-session-key
}
}
Comments
0 comments
Please sign in to leave a comment.