mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-07 07:10:01 +02:00
13 lines
372 B
Plaintext
13 lines
372 B
Plaintext
URL = FunctionParameters["Bitrix24_URL"];
|
|
|
|
Result = OPI_Bitrix24.GetLeadsList(URL);
|
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
|
|
Filter = New Structure;
|
|
Filter.Insert("TITLE" , "MegaClient");
|
|
Filter.Insert("HAS_EMAIL", "Y");
|
|
|
|
Result = OPI_Bitrix24.GetLeadsList(URL, Filter, , Token);
|