The undeleteList() method restores a deleted list back to an active (undeleted) status.
Input
session_id [xsd:string] (required)
Your API session id.
list_id [xsd:int] (required)
The id of the list to undelete.
Output
[xsd:boolean]
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, })