Api\ServiceType\ApiService::User_GetBookmarkFolders PHP Method

User_GetBookmarkFolders() public method

Method to call the operation originally named User.GetBookmarkFolders Meta informations extracted from the WSDL - documentation: Retrieves the folders the user has on their menu.
public User_GetBookmarkFolders ( string $limit ) : folder_list | boolean
$limit string
return folder_list | boolean
    public function User_GetBookmarkFolders($limit)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('User.GetBookmarkFolders', array($limit)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService