function CampaignMonitor::templateGetDetail in Campaign Monitor 6.3
Same name and namespace in other branches
- 6.2 lib/CMBase.php \CampaignMonitor::templateGetDetail()
*
Parameters
string $template_id (TemplateID) ID of the template whose details are being requested: * @see http://www.campaignmonitor.com/api/method/template-getdetail/
File
- lib/
CMBase.php, line 1517
Class
- CampaignMonitor
- The new CampaignMonitor class that now extends from CMBase. This should be backwards compatible with the original (PHP5) version.
Code
function templateGetDetail($template_id) {
return $this
->makeCall('Template.GetDetail', array(
'params' => array(
'TemplateID' => $template_id,
),
));
}