2024-08-13 14:04:54 +00:00
|
|
|
URL = FunctionParameters["Bitrix24_URL"];
|
|
|
|
|
|
|
|
FilterStructure = New Structure;
|
|
|
|
FilterStructure.Insert("NAME" , "Vitaly");
|
|
|
|
FilterStructure.Insert("LAST_NAME" , "Alpaca");
|
|
|
|
FilterStructure.Insert("WORK_POSITION" , "DevOps engineer");
|
|
|
|
FilterStructure.Insert("UF_DEPARTMENT_NAME", "Marketing department");
|
|
|
|
FilterStructure.Insert("USER_TYPE" , "employee");
|
|
|
|
|
|
|
|
Result = OPI_Bitrix24.FindUsers(URL, FilterStructure);
|
|
|
|
|
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
|
|
|
|
|
|
FilterStructure = New Structure;
|
|
|
|
FilterStructure.Insert("UF_DEPARTMENT_NAME", "Bitrix");
|
|
|
|
|
|
|
|
Result = OPI_Bitrix24.FindUsers(URL, FilterStructure, Token);
|