Api\ServiceType\ApiService::User_GetDashboardsAPI PHP Method

User_GetDashboardsAPI() public method

Method to call the operation originally named User.GetDashboardsAPI Meta informations extracted from the WSDL - documentation: Retrieves a list of dashboards accessible by the user.
public User_GetDashboardsAPI ( string $limit ) : dashboard_list | boolean
$limit string
return dashboard_list | boolean
    public function User_GetDashboardsAPI($limit)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('User.GetDashboardsAPI', array($limit)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService