Documentation

catalog.extra.get

Scope: catalog Permissions: all

catalog.extra.get(id)

The method gets values of extra charge fields by ID.

When successful, returns extra charge resource in the response body

Parameters

ParameterType Description
idstring Extra charge number.

Example

BX24.callMethod(
    'catalog.extra.get', 
    {
      id: 7
    }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});
© «Bitrix24», 2001-2024
Up