mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-02-03 13:22:19 +02:00
16 lines
637 B
Plaintext
16 lines
637 B
Plaintext
URL = FunctionParameters["Bitrix24_URL"];
|
|
TaskID = FunctionParameters["Bitrix24_CommentsTaskID"];
|
|
CommentID = FunctionParameters["Bitrix24_HookCommentID"];
|
|
|
|
Text = "The task has been changed, do not split up";
|
|
|
|
Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text);
|
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
CommentID = FunctionParameters["Bitrix24_CommentID"];
|
|
|
|
Text = "The task has been changed, let's split up";
|
|
|
|
Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text, Token);
|