• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/timeline/pusher.php
  • Класс: Bitrix\Crm\Timeline\Pusher
  • Вызов: Pusher::sendPullActionEvent
public function sendPullActionEvent(
	int $targetEntityTypeId,
	int $targetEntityId,
	string $action,
	array $actionParams = []
)
{
	$this->sendPullCommand(
		$targetEntityTypeId,
		$targetEntityId,
		self::ITEM_ACTION_COMMAND,
		array_merge(
			['action' => $action],
			$actionParams
		)
	);
}