Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

undeleteCampaign


The undeleteCampaign() method restores a campaign to the state it was in prior to being deleted.

Input

[vrtypens:undeleteCampaignArgs]

session_id [xsd:string] (required)
Your API session id.
campaign_id [xsd:int] (required)
The id of the campaign to undelete.

Output

[xsd:boolean]
The output is always true.

Examples

Perl

$vrapi->undeleteCampaign( {
    session_id => $sid,
    campaign_id => $cid,
} );

PHP

$vrapi->undeleteCampaign( array (
    'session_id' => $sid,
    'campaign_id' => $cid,
) );

Ruby

vr.undeleteCampaign({
    'session_id'  => sid,
    'campaign_id' => cid,
})

Leave a Comment