Documentation

crm.requisite.bankdetail.list

Scope: catalog Permissions to execute: for all

crm.requisite.bankdetail.list()

Returns list of bank details by the filter. This is the implementation of the list method for requisites.

Parameters

See description of list methods.

Example


    //Search bank details by the country ID
BX24.callMethod(
	"crm.requisite.bankdetail.list",
	{
		order: { "DATE_CREATE": "ASC" },
		filter: { "COUNTRY_ID": "1"},
		select: [ "ID", "NAME"]
	},
	function(result) 
	{
		if(result.error())
			console.error(result.error());
		else
		{
			console.dir(result.data());
			if(result.more())
				result.next();
		}
	}
);


© «Bitrix24», 2001-2024
Up