Api\ServiceType\ApiService::Dashboards_GetDashboardAPI PHP Method

Dashboards_GetDashboardAPI() public method

Method to call the operation originally named Dashboards.GetDashboardAPI Meta informations extracted from the WSDL - documentation: Retrieves a list of reportlets owned by the given dashboard.
public Dashboards_GetDashboardAPI ( string $dashboard_id, string $dashboard_type ) : Api\StructType\ApiDashboard_element | boolean
$dashboard_id string
$dashboard_type string
return Api\StructType\ApiDashboard_element | boolean
    public function Dashboards_GetDashboardAPI($dashboard_id, $dashboard_type)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Dashboards.GetDashboardAPI', array($dashboard_id, $dashboard_type)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService