You are here

function CampaignMonitor::clientGetLists in Campaign Monitor 5.2

Same name and namespace in other branches
  1. 6.3 lib/CMBase.php \CampaignMonitor::clientGetLists()
  2. 6.2 lib/CMBase.php \CampaignMonitor::clientGetLists()

*

Parameters

int $client_id (Optional) A valid Client ID to check against. If not given, the default class property is used.: * @return mixed A parsed response from the server, or null if something failed. * @see http://www.campaignmonitor.com/api/Client.GetLists.aspx

1 call to CampaignMonitor::clientGetLists()
CampaignMonitor::clientGetListsDropdown in lib/CMBase.php
* Creates an associative array with list_id => List_label pairings. * *

File

lib/CMBase.php, line 957

Class

CampaignMonitor

Code

function clientGetLists($client_id = null) {
  return $this
    ->clientGeneric('GetLists', $client_id);
}