According to your error message, you cannot do this in version 3.5.
Work around is a few constructors:
bool listUnsubscribe(string apikey, string id, string email_address) { return listUnsubscribe(apikey, id, email_address, false, true, true); } bool listUnsubscribe(string apikey, string id, string email_address, bool delete_menber, bool send_goodbye, bool send_notify) { return whatever; }
Larstech
source share