function CampaignMonitor::clientGetCampaigns in Campaign Monitor 5.2
Same name and namespace in other branches
- 6.3 lib/CMBase.php \CampaignMonitor::clientGetCampaigns()
- 6.2 lib/CMBase.php \CampaignMonitor::clientGetCampaigns()
*
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.GetCampaigns.aspx
File
- lib/
CMBase.php, line 1024
Class
Code
function clientGetCampaigns($client_id = null) {
return $this
->clientGeneric('GetCampaigns', $client_id);
}