Documentation

crm.automation.trigger.list

Scope: catalog Permissions to execute: for all

Method gets list of applications and triggers. Returns array with triggers added by the app with fields NAME и CODE.

Parameters

No parameters

Example

function getList()
{
	BX24.callMethod(
		'crm.automation.trigger.list',
		{},
		function(result)
		{
			if(result.error())
				alert("Error: " + result.error());
			else
			{
				alert("Success: data is in console");
				console.log(result.data());
			}
		}
	);
}

© «Bitrix24», 2001-2024
Up