Documentation

sale.propertygroup.get

sale.propertygroup.get(propertyGroupsId)

The method accesses fields of property group.

When successful, returns property group resource in response body.

Parameters

ParameterType Description
propertyGroupsIdstring Number of property group.


Examples

BX24.callMethod(
    'sale.propertygroup.get', 
    { propertyGroupsId: id }, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});


© «Bitrix24», 2001-2024
Up