Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

storeArchiveEmailCampaign


The storeArchiveEmailCampaign() method is used to obtain the URL of the Archived version of a specific email campaign.
If the archived version doesn’t exist, the method will render it and store it.

Input

[vrtypens:storeArchiveEmailCampaignArgs]

session_id [xsd:string] (required)
Your API session id.
campaign_hash [xsd:string] (required)
The hash of the archived email campaign.

Output

[xsd:string]

Examples

Perl

            $vrapi->storeArchiveEmailCampaign( {
                session_id    => $sid, 
                campaign_hash => '445DFED3'
            } );
        

PHP

            $vrapi->storeArchiveEmailCampaign( array(
                'session_id'    => $sid, 
                'campaign_hash' => '445DFED3'
            ) );
        

Ruby

            vr.storeArchiveEmailCampaign({
                'session_id'    => sid, 
                'campaign_hash' => '445DFED3'
            })