• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/url/devops.php
  • Класс: BitrixRestUrlDevOps
  • Вызов: DevOps::getIntegrationSectionUrl
public function getIntegrationSectionUrl($code = null)
{
	$replace = null;
	$subject = null;

	if(!is_null($code))
	{
		$replace = [
			'#SECTION_CODE#'
		];
		$subject = [
			$code
		];
	}

	return $this->getUrl(
		'section',
		$replace,
		$subject
	);
}