• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/ads/leadads/service.php
  • Класс: Bitrix\Crm\Controller\Ads\LeadAds\Service
  • Вызов: Service::logoutGroupAction
public function logoutGroupAction(string $type, string $groupId) : AjaxJson
{
	if (!$service = $this->getService())
	{
		$this->addError(
			new Error("Service is not available.")
		);

		return $this->errorResponse();
	}

	if (!$service::unRegisterGroup($type,$groupId))
	{
		$this->addError(
			new Error("Can't unregister group")
		);

		return $this->errorResponse();
	}

	return $this->successResponse();
}