Api\ServiceType\ApiService::Permissions_SaveReportSuiteGroups PHP Method

Permissions_SaveReportSuiteGroups() public method

Method to call the operation originally named Permissions.SaveReportSuiteGroups Meta informations extracted from the WSDL - documentation: Assigns the provided groups to the indicated report suite ID.
public Permissions_SaveReportSuiteGroups ( string $rsid, string $selected_groups ) : integer | boolean
$rsid string
$selected_groups string
return integer | boolean
    public function Permissions_SaveReportSuiteGroups($rsid, $selected_groups)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Permissions.SaveReportSuiteGroups', array($rsid, $selected_groups)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService