All email lists (array) are obtained.
lists(integer $start = 0, integer $limit = 1000) : array
Array of lists. Each list is represented as an array that includes:
lists(); header("Content-Type: text/plain"); if ($api->errorCode) { echo "Unable to load lists()!"; echo "\tCode=" . $api->errorCode . "\n"; echo "\tMsg=" . $api->errorMessage . "\n"; } else { echo "Lists returned: " . sizeof($retval) . "\n"; foreach ($retval as $list) { echo "Id = " . $list['id'] . " - " . $list['name'] . "\n"; } }
new xmlrpcval($apikey) ), 'struct'); $f = new xmlrpcmsg('lists', array($v)); $c = new xmlrpc_client($apiUrl["path"], $apiUrl['host'], 80); $c->setDebug($debug); $r = &$c->send($f); header("Content-Type: text/plain"); if (!$r->faultCode()) { $retval = php_xmlrpc_decode($r->value()); echo "Lists returned: " . sizeof($retval) . "\n"; foreach ($retval as $list) { echo "Id = " . $list['id'] . " - " . $list['name'] . "\n"; } } else { echo "Unable to run lists()!\n"; echo "\tCode=" . $r->faultCode() . "\n"; echo "\tMsg=" . $r->faultString() . "\n"; }
from lib.config import * #contains apikey from lib.MGAPI import MGAPI # This Example shows how to ping using the MGAPI.php class and do some basic error checking. api = MGAPI(apikey) retval = api.lists() if api.errorCode: print "Unable to load lists()!" print "\tCode=", api.errorCode print "\tMsg=", api.errorMessage else: print "Lists returned: %d" % (len(retval)) for list in retval: print "Id = %s - %s" % (list["id"], list["name"])