Documentation

sale.paymentItemShipment.get

Scope: catalog Permissions to execute: for all

sale.paymentItemShipment.get(id)

Method gets payment and shipment binding fields by ID.

Parameters

ParameterType Description
idinteger Payment and shipment binding ID.

Example

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

© «Bitrix24», 2001-2024
Up