You are here

function MCAPI::campaignNotOpenedAIM in Mailchimp 7

Same name and namespace in other branches
  1. 5.2 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()
  2. 5 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()
  3. 6.2 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()
  4. 6 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()

Retrieve the list of email addresses that did not open a given campaign

AIM

Parameters

string $cid the campaign id to get no opens for (can be gathered using campaigns()):

integer $start optional for large data sets, the page number to start at - defaults to 1st page of data (page 0):

integer $limit optional for large data sets, the number of results to return - defaults to 1000, upper limit set at 15000:

Return value

array list of email addresses that did not open a campaign

File

./MCAPI.class.php, line 794

Class

MCAPI

Code

function campaignNotOpenedAIM($cid, $start = 0, $limit = 1000) {
  $params = array();
  $params["cid"] = $cid;
  $params["start"] = $start;
  $params["limit"] = $limit;
  return $this
    ->callServer("campaignNotOpenedAIM", $params);
}