Documentation

sale.propertyRelation.list

Scope: catalog Permissions to execute: for all

sale.propertyRelation.list(select, filter, order, navigation)

The method gets list of property bindings.

When successful, returns list of items in response body.

Parameters

ParameterType Description
selectobject Fields, corresponding to available list of fields.
filterobject Fields, corresponding to available list of fields.
orderobject Fields, corresponding to available list of fields.
navigationstring Number of display page.


Examples

BX24.callMethod(
    'sale.propertyRelation.list', 
    { select:{
		entityId		
	  } ,
	  filter:{
	    propertyId: 1
	  },
	  order:{
		entityType: asc
	  },
	  navigation: 1
	}, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});


© «Bitrix24», 2001-2024
Up