i've looked around for this for a long time but couldn't find any answer. In my rails 4 app i'm using the Gibbon gem (v.2.0.1) to manage mailchimp lists. Everything works fine as far as subscribing and unsunscribing users, but i cannot manage to update the email address of a subscribed user (i can change every parameter like first and last name though).
my update call looks something like:
member = $gibbon.lists(list_id).members(member_id)
member.update(body:
{ email_address: self.email,
status: "subscribed",
merge_fields: {FNAME: self.first_name,
LNAME: self.last_name}
}
)
i've tried upsert as well but no luck. Is is actually possible to update emails in mailchimp or do i need to delete the user and create a new one? thanks for the help