The unlaunchEmailCampaign() method is used to cancel the launch of a campaign. It simply changes the campaign’s status to “active”. If the campaign is already in the process of mailing or if it has already been mailed, then a fault is thrown.
Input
[vrtypens:unlaunchEmailCampaignArgs]
session_id [xsd:string] (required)
Your API session id.
campaign_id [xsd:int] (required)
The id of the campaign to unlaunch.
Output
[xsd:boolean]
Examples
Perl
$vrapi->unlaunchEmailCampaign( {
session_id =>$sid,
campaign_id => $cid,
} );
PHP
$vrapi->unlaunchEmailCampaign( array(
'session_id' => $sid,
'campaign_id' => $cid,
));
Ruby
vr.unlaunchEmailCampaign({
'session_id' => sid,
'campaign_id' => cid,
})
