Data is obtained about blocked bounces of a particular campaign.
campaignBlockedBounces(string $cid, integer $start, integer $limit) : array
campaignBlockedBounces($cid, $start, $limit); header("Content-Type: text/plain"); if ($api->errorCode) { echo "Unable to load campaignBlockedBounces()!"; echo "\tCode=" . $api->errorCode . "\n"; echo "\tMsg=" . $api->errorMessage . "\n"; } else { echo "E-mails returned: " . sizeof($retval) . "\n"; foreach ($retval as $email) { echo "\t" . $email . "\n"; } }