• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/businesssuite/catalog.php
  • Класс: Bitrix\Seo\BusinessSuite\Catalog
  • Вызов: Catalog::checkBatchRequestStatus
public function checkBatchRequestStatus(string $handle): Response
{
	if ($handle === '')
	{
		return $this->createResponseWithError('Empty handle data.');
	}

	return $this->sendRequest('catalog.products.check.batch.status', [
		'catalog_id' => $this->getCatalogId(),
		'load_ids_of_invalid_requests' => true,
		'handle' => $handle,
	]);
}