Api\ServiceType\ApiService::Dashboards_GetReportletDataAPI PHP Method

Dashboards_GetReportletDataAPI() public method

Method to call the operation originally named Dashboards.GetReportletDataAPI Meta informations extracted from the WSDL - documentation: Retrieves data for a given reportlet.
public Dashboards_GetReportletDataAPI ( string $reportlet_id ) : Api\StructType\ApiReportlet | boolean
$reportlet_id string
return Api\StructType\ApiReportlet | boolean
    public function Dashboards_GetReportletDataAPI($reportlet_id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Dashboards.GetReportletDataAPI', array($reportlet_id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService