Skip to main content

Get fields structure for folder items filter

Returns filter structure for child folder items

Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export

ParameterCLI optionTypeDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
Clear--emptyBooleanTrue > structure with empty values, False > field types at values
Token--tokenStringAccess token, when app auth method used

Returns: Structure of KeyAndValue - Fields structure


tip

Method at API documentation: disk.folder.getfields


Code example
    URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";

Result = OPI_Bitrix24.GetFolderFilterStructure(URL);

URL = "b24-ar17wx.bitrix24.by";
Token = "b529cb66006e9f06006b12e400000001000...";

Result = OPI_Bitrix24.GetFolderFilterStructure(URL, True, Token);
CLI command example
    
oint bitrix24 GetFolderFilterStructure --url "b24-ar17wx.bitrix24.by" --empty %empty% --token "fe3fa966006e9f06006b12e400000001000..."

Result
{
"ID": "",
"NAME": "",
"TYPE": "",
"CODE": "",
"STORAGE_ID": "",
"PARENT_ID": "",
"CREATE_TIME": "",
"UPDATE_TIME": "",
"DELETE_TIME": "",
"DELETED_TYPE": ""
}