MailChimp.Api.Net.Services.Reports.MailChimpReports.GetUnsubscriberInfoAsync C# (CSharp) Method

GetUnsubscriberInfoAsync() public method

Return top open locations for a specific campaign. Unique id for the campaign The MD5 hash of the lowercase version of the list member’s email address
public GetUnsubscriberInfoAsync ( string campaignId, string subscriber_hash ) : Task
campaignId string
subscriber_hash string
return Task
        public async Task<SentTo> GetUnsubscriberInfoAsync(string campaignId, string subscriber_hash)
        {
            return await unsubscribe.GetUnsubscriberInfoAsync(campaignId, subscriber_hash);
        }
    }