What is the proper way to retrieve an id of a list from MailChimp using Gibbon API Wrapper?
Say I want to do something like:
list = gibbon.lists.list(filters: "Foo")
gibbon.lists(list.id).members.create(....)
list.id
returns stack level too deep
because of the nested attributes inside the gibbon.list
call. What is the correct way to call list.id
in Gibbon?