Documentation

catalog.catalog.update

catalog.catalog.update(id, fields)

The method updates commercial catalog fields.

When successful, returns commercial catalog resource in the response.

Parameters

ParameterType Description
idstring Commercial catalog number.
fieldsobject Fields, corresponding to the available list of [link=10903674]fields[/link] .


Examples

BX24.callMethod(
    'catalog.catalog.update', 
    {
	  id: 13,
	  fields: {	      
		yandexExport: Y
	  }
	}, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});
© «Bitrix24», 2001-2023
Up