Need An Email Marketing Solution For All Of Your Customers?

Partner With VerticalResponse!

undeleteList


The undeleteList() method restores a deleted list back to an active (undeleted) status.

Input

[vrtypens:undeleteListArgs]

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

Output

[xsd:boolean]
The output is always true.

Examples

Perl

$vrapi->undeleteList( {
    session_id => $sid,
    list_id => $lid,
} );

PHP

$vrapi->undeleteList( array (
    'session_id' => $sid,
    'list_id'    => $lid,
) );

Ruby

vr.undeleteList({
    'session_id' => sid,
    'list_id'    => lid,
})