Документация для разработчиков
Темная тема

catalog.document.delete

Scope: catalog Права на выполнение: для всех

catalog.document.delete(id)

Метод для удаления документа.

Если операция успешна, возвращается true в теле ответа.

Параметры

ПараметрТип Описание
idinteger Идентификатор документа.

Примеры

BX24.callMethod(
	'catalog.document.delete',
	{
		'id': 42,
	},
	function(result)
	{
		if(result.error())
			console.error(result.error());
		else
			console.log(result.data());
	}
);
$result = CRest::call(
	'catalog.document.delete',
	[
		'id' => 42,
	]
);

echo '<pre>';
print_r($result);
echo '</pre>';

© «Битрикс», 2001-2024, «1С-Битрикс», 2024