Documentation

sale.paysystem.list

sale.paysystem.list(params)

The method is used for getting list of payment systems.

Parameters

ParameterDescription
params Array with parameters List of available fields is identical to fields of the method sale.paysystem.add for selection (select, order, filter) (optional).

Example

BX24.callMethod(
	"sale.paysystem.list",
	{},
	function(result)
	{
		if(result.error())
			console.error(result.error());
		else
			console.dir(result.data());
	}
);


© «Bitrix24», 2001-2024
Up