function MCAPI::campaignNotOpenedAIM in Mailchimp 6
Same name and namespace in other branches
- 5.2 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()
- 5 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()
- 6.2 MCAPI.class.php \MCAPI::campaignNotOpenedAIM()
- 7 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 506
Class
Code
function campaignNotOpenedAIM($cid, $start = 0, $limit = 1000) {
$params = array();
$params["cid"] = $cid;
$params["start"] = $start;
$params["limit"] = $limit;
return $this
->callServer("campaignNotOpenedAIM", $params);
}