function MCAPI::campaignUnschedule in Mailchimp 6
Same name and namespace in other branches
- 5.2 MCAPI.class.php \MCAPI::campaignUnschedule()
- 5 MCAPI.class.php \MCAPI::campaignUnschedule()
- 6.2 MCAPI.class.php \MCAPI::campaignUnschedule()
- 7 MCAPI.class.php \MCAPI::campaignUnschedule()
Unschedule a campaign that is scheduled to be sent in the future
Related
@example xml-rpc_campaignUnschedule.php
Parameters
string $cid the id of the campaign to unschedule:
Return value
boolean true on success
File
- ./
MCAPI.class.php, line 54
Class
Code
function campaignUnschedule($cid) {
$params = array();
$params["cid"] = $cid;
return $this
->callServer("campaignUnschedule", $params);
}