Documentation

sale.shipmentproperty.list

Scope: sale Permissions to execute: for all

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

Method for getting list of shipment properties.

Returns list of items in the response body on success.

Parameters

ParameterType Description
selectobject Fields from corresponding available list of fields.
filterobject Fields from corresponding available list of fields.
orderobject Fields from corresponding available list of fields.
navigationstring Displayed page number.
startstring The number of first entries to be skipped inside the result. This value must be divisible by 50 Due to technical limitations this parameter value always must be divisible by 50. For example, with the value of 50, the result will show 51st and subsequent entries, and the first 50 entries will be skipped. . With the value of -1, the count will be disabled.


Example

BX24.callMethod(
    'sale.shipmentproperty.list', 
    { select:{
		id		
	  } ,
	  filter:{
	    code: 'test'
	  },
	  order:{
		id: ASC
	  },
	  navigation: 1
	}, 
    function(result)
    {
        if(result.error())
            console.error(result.error().ex);
        else
            console.log(result.data());
});


© «Bitrix24», 2001-2024