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
| Code | Interpretation |
|---|---|
| 404 | No subscriber lists were created for this account. |
PHP5 Example
try{
$response=$client->apiGetList();
}
catch (SoapFault $exception) {
echo ($exception->getMessage());
}