Documentation

catalog.priceType.get

Scope: catalog Permissions: all

catalog.priceType.get(id)

The method gets values of price type fields by ID.

When successful, returns price type resource in the response body.

Parameters

ParameterType Description
idinteger Price type number.

Examples

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