After looking for an answer to this question for a while, and not finding one, I just tested and played around with my code, to finally come up with the solution. It looks like this:
Gibbon::Request.lists(list_id).members(user_email).retrieve.body["status"]
In your case it would look like this:
gibbon.lists(list_id).members(lower_case_md5_hashed_email_address).retrieve.body["status"]
This also means that you can retrieve whatever information from the body. Like email_address
, merge_fields
, and so on.
Just to make it clear for others, list_id
is your audience id that you can find in your mailchimp dashboard. It is basically a string of characters that was generated automatically, and that identify the mailing list you have created.
And the user_email
is just the email address in quotes.