Documentation

crm.paysystem.list

Scope: catalog Permissions to execute: for all

crm.paysystem.list(order, filter)

Returns a list of payment methods applicable to estimates or invoices.

Parameters

Parameter Description
orderSorting fields.
filterFilter fields.

Example

	BX24.callMethod(
		"crm.paysystem.list", {
			order: {"SORT": "ASC"},
			filter: {
				"%NAME": "Estimate",
			}
		},
		function (result)
		{
			if (result.error())
			{
				console.error(result.error());
			}
			else
			{
				console.dir(result.data());
				if (result.more())
					result.next();
			}
		}
	);





© «Bitrix24», 2001-2024
Up