mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-26 05:37:27 +02:00
15 lines
484 B
Plaintext
15 lines
484 B
Plaintext
// Full filter structure you can find at GetTasksFilterStructure method
|
|
Filter = New Structure;
|
|
Filter.Insert("CREATED_BY" , 1);
|
|
Filter.Insert("RESPONSIBLE_ID", 10);
|
|
|
|
Indent = 1;
|
|
URL = FunctionParameters["Bitrix24_URL"];
|
|
|
|
Result = OPI_Bitrix24.GetTasksList(URL, Filter);
|
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
|
|
Result = OPI_Bitrix24.GetTasksList(URL, , Indent, Token);
|