You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-22 10:05:29 +02:00
2.0 KiB
2.0 KiB
sidebar_position
| sidebar_position |
|---|
| 1 |
Get information about folder
Get folder information
Function GetFolderInformation(Val URL, Val FolderID, Val Token = "") Export
| Parameter | CLI option | Type | Description |
|---|---|---|---|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
| FolderID | --folderid | String, Number | Folder identifier |
| Token | --token | String | Access token, when app auth method used |
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
:::tip
Method at API documentation: disk.folder.get
:::
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
FolderID = "10842";
Result = OPI_Bitrix24.GetFolderInformation(URL, FolderID);
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.GetFolderInformation(URL, FolderID, Token);
oint bitrix24 GetFolderInformation --url "b24-ar17wx.bitrix24.by" --folderid "5016" --token "fe3fa966006e9f06006b12e400000001000..."
{
"result": {
"ID": "12402",
"NAME": "New catalog",
"CODE": null,
"STORAGE_ID": "3",
"TYPE": "folder",
"REAL_OBJECT_ID": "12402",
"PARENT_ID": "3",
"DELETED_TYPE": "0",
"CREATE_TIME": "2024-10-07T22:25:37+03:00",
"UPDATE_TIME": "2024-10-07T22:25:37+03:00",
"DELETE_TIME": null,
"CREATED_BY": "1",
"UPDATED_BY": "1",
"DELETED_BY": "0",
"DETAIL_URL": "https://b24-ar17wx.bitrix24.by/docs/path/New catalog"
},
"time": {
"start": 1728329137.86415,
"finish": 1728329137.89764,
"duration": 0.033484935760498,
"processing": 0.00515508651733398,
"date_start": "2024-10-07T22:25:37+03:00",
"date_finish": "2024-10-07T22:25:37+03:00",
"operating_reset_at": 1728329737,
"operating": 0
}
}