• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/posting/segmentdatabuilder.php
  • Класс: BitrixSenderPostingSegmentDataBuilder
  • Вызов: SegmentDataBuilder::clearGroupBuilding
static function clearGroupBuilding(int $groupId)
{
	if ($groupId)
	{
		$filter = [
			'=GROUP_ID' => $groupId,
		];

		GroupStateTable::deleteList($filter);
		RuntimeSegmentDataClearJob::addEventAgent($groupId);
	}
}