vote up 1 vote down star

How do I delete all the emails in my highrise app? I don't want to delete the entire thing and start over, I've got companies and tags and metadata. What's the easiest way?

This question paraphrased from Tibor Holoda's question on GetSatisfaction

flag

1 Answer

vote up 1 vote down

It looks like this is available through the API, and should be easy with the ruby bindings:

#!/usr/bin/env ruby
ENV['SITE'] = "http://passkey:X@my.hirisehq.com"
require 'highrise'
Highrise::Person.each do |person|
  person.emails.each {|email|
    email.destroy
  }
end
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.