Get List

Getting all lists (apiGetList)

This function delivers all lists with List IDs.

Response

[listResponse] => Array
(
    [0] => stdClass Object
    (
        [listID] => 123456
        [listName] => Usergroup #1
    )
    [...]
)

Error Response

CodeInterpretation
404No subscriber lists were created for this account.

PHP5 Example

try{
    $response=$client->apiGetList();
}
catch (SoapFault $exception) {
    echo ($exception->getMessage());
}