You are here

function MCAPI::campaignUnschedule in Mailchimp 7

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

Unschedule a campaign that is scheduled to be sent in the future

Related

@example mcapi_campaignUnschedule.php @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 79

Class

MCAPI

Code

function campaignUnschedule($cid) {
  $params = array();
  $params["cid"] = $cid;
  return $this
    ->callServer("campaignUnschedule", $params);
}