Documentation

disk.storage.getlist

disk.storage.getlist

Returns the list of available storages.

Parameters

Parameter Description
filter Optional parameter. Support filtering by fields is indicated in disk.storage.getfields as USE_IN_FILTER: true.

The response contains an array of objects with a structure similar to disk.storage.get.

Also see description of the list methods.

Example

//search of a group storage with the name containing "call"
BX24.callMethod(
		"disk.storage.getlist",
		{
			filter: {
				'ENTITY_TYPE': 'group',
				'%NAME': 'call'
			}
		},
		function (result)
		{
			if (result.error())
				console.error(result.error());
			else
				console.dir(result.data());
		}
);




© «Bitrix24», 2001-2024