Documentation

catalog.price.get

Scope: catalog Permissions: all

catalog.price.get(id)

Method gets field value for price fields by ID.

Returns product price resource on success.

Parameters

ParameterType Description
idinteger Product price ID.

Examples

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