disk.storage.getchildren
disk.storage.getchildren
Returns the list of files and folders located directly in the storage root.
The response contains an array of objects with a structure similar to disk.folder.get and disk.file.get.
Response example:
"result": [ { "ID": "13", "NAME": "near", "CODE": null, "STORAGE_ID": "4", "TYPE": "folder", "PARENT_ID": "8", "DELETED_TYPE": "0", "CREATE_TIME": "2015-04-24T12:39:35+03:00", "UPDATE_TIME": "2015-04-24T12:39:35+03:00", "DELETE_TIME": null, "CREATED_BY": "1", "UPDATED_BY": "1", "DELETED_BY": "0", "DETAIL_URL": "https://test.bitrix24.com/workgroups/group/3/disk/path/near/" }, { "ID": "10", "NAME": "2511.jpg", "CODE": null, "STORAGE_ID": "4", "TYPE": "file", "PARENT_ID": "8", "DELETED_TYPE": "0", "CREATE_TIME": "2015-04-24T10:41:51+03:00", "UPDATE_TIME": "2015-04-24T15:52:43+03:00", "DELETE_TIME": null, "CREATED_BY": "1", "UPDATED_BY": "1", "DELETED_BY": "0", "DOWNLOAD_URL": "https://test.bitrix24.com/disk/downloadFile/10/?&ncc=1&filename=2511.jpg&auth=******", "DETAIL_URL": "https://test.bitrix24.com/workgroups/group/3/disk/file/2511.jpg" }, { "ID": "11", "NAME": "549x700.png", "CODE": null, "STORAGE_ID": "4", "TYPE": "file", "PARENT_ID": "8", "DELETED_TYPE": "0", "CREATE_TIME": "2015-04-24T10:58:49+03:00", "UPDATE_TIME": "2015-04-24T12:01:32+03:00", "DELETE_TIME": null, "CREATED_BY": "1", "UPDATED_BY": "1", "DELETED_BY": "0", "DOWNLOAD_URL": "https://test.bitrix24.com/disk/downloadFile/11/?&ncc=1&filename=549x700.png&auth=******", "DETAIL_URL": "https://test.bitrix24.com/workgroups/group/3/disk/file/549x700.png" }]
Parameters
Parameter | Description |
---|---|
id | Storage ID. |
filter | Optional parameter. Support filtering by fields indicated in disk.folder.getfields as USE_IN_FILTER: true. |
Example
BX24.callMethod( "disk.storage.getchildren", { id: 4, filter: { CREATED_BY: 1 } }, function (result) { if (result.error()) console.error(result.error()); else console.dir(result.data()); } );
© «Bitrix24», 2001-2024