Method : get_list

This method serves to get back the information of your forms according to your parameters ,or a particular form according to its identifier.

Field Type Description
listeid integer Identifier of your list
If this parameter is defines, your other parameters will not be considered(Optional)
name string Name of your list(Optional)
language string Language of your list
'french', 'english', 'spanish', 'portuguese', 'german', 'russian', 'esperanto', 'neerlandais'(Optional)
siteweb string redirection website of your list(Optional)
email_exp integer expedition Email address of your list(Optional)
rep_mail integer Receprion Email address of your list(Optional)
optin integer Optin of your list
1 : Simple
2 : Double(Optional)
parent integer parent list of your list(Optional)
limite array Limit of data recovery.
Format [0,50](Optional)
                                
                                    
 // Recherche de listes enfant de la liste 12345
    $sgApi

        ->set('parent',    12345)
        ->set('detail'      true);

    $call = $sgApi->call('get_list');