1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-25 02:42:28 +02:00

Правки доков

This commit is contained in:
Anton Titovets 2024-07-10 13:58:29 +03:00
parent 99d11bd36b
commit 8bd11cfb5a
683 changed files with 2837 additions and 2052 deletions

View File

@ -433,11 +433,15 @@
ТекстПримечания = СтрЗаменить(ТекстПримечания, "@", "https://"); ТекстПримечания = СтрЗаменить(ТекстПримечания, "@", "https://");
ТекстПримечания = ":::tip" ТекстПримечания = "<br/>"
+ Символы.ПС
+ ":::tip"
+ Символы.ПС + Символы.ПС
+ ТекстПримечания + ТекстПримечания
+ Символы.ПС + Символы.ПС
+ ":::"; + ":::"
+ Символы.ПС
+ "<br/>";
КонецЕсли; КонецЕсли;

View File

@ -6,12 +6,10 @@ sidebar_position: @Счетчик
@Описание @Описание
@Примечание
<br/> <br/>
*@Объявление* `@Объявление`
| Параметр | CLI опция | Тип | Назначение | | Параметр | CLI опция | Тип | Назначение |
|-|-|-|-| |-|-|-|-|
@ -20,6 +18,9 @@ sidebar_position: @Счетчик
Возвращаемое значение: @ВозвращаемоеЗначение Возвращаемое значение: @ВозвращаемоеЗначение
@Примечание
@Вызов1С @Вызов1С

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Creates a comment for a record in the table Creates a comment for a record in the table
<br/> <br/>
*Function CreateComment(Val Token, Val Base, Val Table, Val Record, Val Text) Export* `Function CreateComment(Val Token, Val Base, Val Table, Val Record, Val Text) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Deletes a comment for a table record Deletes a comment for a table record
<br/> <br/>
*Function DeleteComment(Val Token, Val Base, Val Table, Val Record, Val Comment) Export* `Function DeleteComment(Val Token, Val Base, Val Table, Val Record, Val Comment) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 4
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Changes the text of an existing comment Changes the text of an existing comment
<br/> <br/>
*Function EditComment(Val Token, Val Base, Val Table, Val Record, Val Comment, Val Text) Export* `Function EditComment(Val Token, Val Base, Val Table, Val Record, Val Comment, Val Text) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -26,6 +24,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Gets the list of comments for a record in the table Gets the list of comments for a record in the table
<br/> <br/>
*Function GetComments(Val Token, Val Base, Val Table, Val Record, Val Indent = "") Export* `Function GetComments(Val Token, Val Base, Val Table, Val Record, Val Indent = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Creates one or an array of records by description or an array of field value descriptions Creates one or an array of records by description or an array of field value descriptions
<br/> <br/>
*Function CreatePosts(Val Token, Val Base, Val Table, Val Data) Export* `Function CreatePosts(Val Token, Val Base, Val Table, Val Data) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Deletes one or an array of records by identifiers Deletes one or an array of records by identifiers
<br/> <br/>
*Function DeletePosts(Val Token, Val Base, Val Table, Val Records) Export* `Function DeletePosts(Val Token, Val Base, Val Table, Val Records) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 4
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Gets the list of records of the selected table Gets the list of records of the selected table
<br/> <br/>
*Function GetListOfRecords(Val Token, Val Base, Val Table, Val Indent = "") Export* `Function GetListOfRecords(Val Token, Val Base, Val Table, Val Indent = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Gets row data of the table by identifier Gets row data of the table by identifier
<br/> <br/>
*Function GetRecord(Val Token, Val Base, Val Table, Val Record) Export* `Function GetRecord(Val Token, Val Base, Val Table, Val Record) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Creates a new table in the base Creates a new table in the base
<br/> <br/>
*Function CreateTable(Val Token, Val Base, Val Name, Val FieldArray, Val Description = "") Export* `Function CreateTable(Val Token, Val Base, Val Name, Val FieldArray, Val Description = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Changes the name and/or description of the base Changes the name and/or description of the base
<br/> <br/>
*Function ModifyTable(Val Token, Val Base, Val Table, Val Name = "", Val Description = "") Export* `Function ModifyTable(Val Token, Val Base, Val Table, Val Name = "", Val Description = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Creates a new database Creates a new database
<br/> <br/>
*Function CreateDatabase(Val Token, Val Workspace, Val Name, Val TableCollection) Export* `Function CreateDatabase(Val Token, Val Workspace, Val Name, Val TableCollection) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Workspace = "wspdf8yl1yZz3PmWZ"; Workspace = "wspdf8yl1yZz3PmWZ";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Gets the schema of base tables Gets the schema of base tables
<br/> <br/>
*Function GetDatabaseTables(Val Token, Val Base) Export* `Function GetDatabaseTables(Val Token, Val Base) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Gets the list of available bases Gets the list of available bases
<br/> <br/>
*Function GetListOfBases(Val Token, Val Indent = "") Export* `Function GetListOfBases(Val Token, Val Indent = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Creates a new field in the table Creates a new field in the table
<br/> <br/>
*Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export* `Function CreateField(Val Token, Val Base, Val Table, Val FieldStructure) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 5
Gets the description of a file field Gets the description of a file field
<br/> <br/>
*Function GetAttachmentField(Val Name) Export* `Function GetAttachmentField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 5
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Attachment"; Name = "Attachment";

View File

@ -6,12 +6,10 @@ sidebar_position: 6
Gets the description of a boolean field Gets the description of a boolean field
<br/> <br/>
*Function GetCheckboxField(Val Name) Export* `Function GetCheckboxField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 6
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Checkbox"; Name = "Checkbox";

View File

@ -6,12 +6,10 @@ sidebar_position: 7
Gets the description of a date field Gets the description of a date field
<br/> <br/>
*Function GetDateField(Val Name) Export* `Function GetDateField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 7
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Date"; Name = "Date";

View File

@ -6,12 +6,10 @@ sidebar_position: 8
Gets the description of an email field Gets the description of an email field
<br/> <br/>
*Function GetEmailField(Val Name) Export* `Function GetEmailField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 8
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Email"; Name = "Email";

View File

@ -6,12 +6,10 @@ sidebar_position: 10
Gets the description of a URL field Gets the description of a URL field
<br/> <br/>
*Function GetLinkField(Val Name) Export* `Function GetLinkField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 10
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Link"; Name = "Link";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Gets the description of a numeric field Gets the description of a numeric field
<br/> <br/>
*Function GetNumberField(Val Name, Val Precision = 0) Export* `Function GetNumberField(Val Name, Val Precision = 0) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 4
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Number"; Name = "Number";

View File

@ -6,12 +6,10 @@ sidebar_position: 9
Gets the description of a phone number field Gets the description of a phone number field
<br/> <br/>
*Function GetPhoneField(Val Name) Export* `Function GetPhoneField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 9
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "Phone"; Name = "Phone";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Gets the description of a string field Gets the description of a string field
<br/> <br/>
*Function GetStringField(Val Name) Export* `Function GetStringField(Val Name) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -21,6 +19,9 @@ sidebar_position: 3
Returns: Structure - Field description Returns: Structure - Field description
```bsl title="Code example" ```bsl title="Code example"
Name = "String"; Name = "String";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Changes the name and/or description of an existing table field Changes the name and/or description of an existing table field
<br/> <br/>
*Function ModifyField(Val Token, Val Base, Val Table, Val Field, Val Name = "", Val Description = "") Export* `Function ModifyField(Val Token, Val Base, Val Table, Val Field, Val Name = "", Val Description = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -26,6 +24,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON response from Airtable Returns: Map Of KeyAndValue - serialized JSON response from Airtable
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ"; Base = "apptm8Xqo7TwMaipQ";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Create new comment to the task Create new comment to the task
<br/> <br/>
*Function AddTaskComment(Val URL, Val TaskID, Val Text, Val Token = "") Export* `Function AddTaskComment(Val URL, Val TaskID, Val Text, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "504"; TaskID = "504";

View File

@ -6,12 +6,10 @@ sidebar_position: 7
Create task result from comment Create task result from comment
<br/> <br/>
*Function CreateResultFromComment(Val URL, Val CommentID, Val Token = "") Export* `Function CreateResultFromComment(Val URL, Val CommentID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 7
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
CommentID = "1718"; CommentID = "1718";

View File

@ -6,12 +6,10 @@ sidebar_position: 8
Deletes task result, created from a comment Deletes task result, created from a comment
<br/> <br/>
*Function DeleteResultFromComment(Val URL, Val CommentID, Val Token = "") Export* `Function DeleteResultFromComment(Val URL, Val CommentID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 8
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
CommentID = "1718"; CommentID = "1718";

View File

@ -6,12 +6,10 @@ sidebar_position: 5
Delete task comment by ID Delete task comment by ID
<br/> <br/>
*Function DeleteTaskComment(Val URL, Val TaskID, Val CommentID, Val Token = "") Export* `Function DeleteTaskComment(Val URL, Val TaskID, Val CommentID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 5
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "504"; TaskID = "504";

View File

@ -6,12 +6,10 @@ sidebar_position: 9
Get comment fields structure Get comment fields structure
<br/> <br/>
*Function GetCommentStructure(Val Clear = False) Export* `Function GetCommentStructure(Val Clear = False) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 9
```sh title="CLI command example" ```sh title="CLI command example"
oint bitrix24 GetCommentStructure --empty %empty% oint bitrix24 GetCommentStructure --empty %empty%

View File

@ -6,12 +6,10 @@ sidebar_position: 6
Gets results list for task Gets results list for task
<br/> <br/>
*Function GetResultsList(Val URL, Val TaskID, Val Token = "") Export* `Function GetResultsList(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 6
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "504"; TaskID = "504";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Gets task comment data by ID Gets task comment data by ID
<br/> <br/>
*Function GetTaskComment(Val URL, Val TaskID, Val CommentID, Val Token = "") Export* `Function GetTaskComment(Val URL, Val TaskID, Val CommentID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
CommentID = "1718"; CommentID = "1718";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Get user comments list for a task Get user comments list for a task
<br/> <br/>
*Function GetTaskCommentsList(Val URL, Val TaskID, Val Token = "") Export* `Function GetTaskCommentsList(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "504"; TaskID = "504";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Changes task comment text Changes task comment text
<br/> <br/>
*Function UpdateTaskComment(Val URL, Val TaskID, Val CommentID, Val Text, Val Token = "") Export* `Function UpdateTaskComment(Val URL, Val TaskID, Val CommentID, Val Text, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 4
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "504"; TaskID = "504";

View File

@ -6,12 +6,10 @@ sidebar_position: 6
Adds a comment to the post Adds a comment to the post
<br/> <br/>
*Function AddPostComment(Val URL, Val PostID, Val Text, Val Token = "") Export* `Function AddPostComment(Val URL, Val PostID, Val Text, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,13 @@ sidebar_position: 6
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogcomment.add](https://dev.1c-bitrix.ru/rest_help/log/log_blogcomment_add.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
Text = "Comment for post"; Text = "Comment for post";
PostID = "260"; PostID = "260";

View File

@ -6,12 +6,10 @@ sidebar_position: 7
Adds new groups or users to the recipients Adds new groups or users to the recipients
<br/> <br/>
*Function AddPostRecipients(Val URL, Val PostID, Val Visibility, Val Token = "") Export* `Function AddPostRecipients(Val URL, Val PostID, Val Visibility, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,13 @@ sidebar_position: 7
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogpost.share](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_share.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
Visibility = "UA"; Visibility = "UA";
PostID = "124"; PostID = "124";

View File

@ -6,14 +6,10 @@ sidebar_position: 1
Create a new post at news feed Create a new post at news feed
:::tip
API method: [log.blogpost.add](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_add.php)
:::
<br/> <br/>
*Function CreatePost(Val URL, Val Text, Val Visibility = "UA", Val Files = "", Val Title = "", Val Important = False, Val Token = "") Export* `Function CreatePost(Val URL, Val Text, Val Visibility = "UA", Val Files = "", Val Title = "", Val Important = False, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -29,6 +25,13 @@ API method: [log.blogpost.add](https://dev.1c-bitrix.ru/rest_help/log/log_blogpo
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogpost.add](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_add.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
Text = "Text of post"; Text = "Text of post";
Title = "Post title"; Title = "Post title";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Remove post from a news feed Remove post from a news feed
<br/> <br/>
*Function DeletePost(Val URL, Val PostID, Val Token = "") Export* `Function DeletePost(Val URL, Val PostID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,13 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogpost.delete](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_delete.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
PostID = "122"; PostID = "122";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Return list of important post viewers ids Return list of important post viewers ids
<br/> <br/>
*Function GetImportantPostViewers(Val URL, Val PostID, Val Token = "") Export* `Function GetImportantPostViewers(Val URL, Val PostID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,13 @@ sidebar_position: 4
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogpost.getusers.important](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_getusers_important.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
PostID = "122"; PostID = "122";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 5
Gen post or array of post with ID or rights selection Gen post or array of post with ID or rights selection
<br/> <br/>
*Function GetPosts(Val URL, Val PostID = "", Val Filter = "UA", Val Token = "") Export* `Function GetPosts(Val URL, Val PostID = "", Val Filter = "UA", Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,13 @@ sidebar_position: 5
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogpost.get](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_get.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
PostID = "124"; PostID = "124";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Change post data Change post data
<br/> <br/>
*Function UpdatePost(Val URL, Val PostID, Val Text, Val Visibility = "UA", Val Files = "", Val Title = "", Val Token = "") Export* `Function UpdatePost(Val URL, Val PostID, Val Text, Val Visibility = "UA", Val Files = "", Val Title = "", Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -27,6 +25,13 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [log.blogpost.update](https://dev.1c-bitrix.ru/rest_help/log/log_blogpost_update.php.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
Text = "New post text"; Text = "New post text";
Title = "New post title"; Title = "New post title";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Add new stage of kanban or My Plan Add new stage of kanban or My Plan
<br/> <br/>
*Function AddKanbanStage(Val URL, Val Name, Val Color = "FFD800", Val PrevStageID = 0, Val EntityID = 0, Val AsAdmin = False, Val Token = "") Export* `Function AddKanbanStage(Val URL, Val Name, Val Color = "FFD800", Val PrevStageID = 0, Val EntityID = 0, Val AsAdmin = False, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -27,6 +25,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
Name = "New stage"; Name = "New stage";
Color = "0026FF"; Color = "0026FF";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Removes a kanban (My Plan) stage, provided there are no tasks in it Removes a kanban (My Plan) stage, provided there are no tasks in it
<br/> <br/>
*Function DeleteKanbanStage(Val URL, Val StageID, Val AsAdmin = False, Val Token = "") Export* `Function DeleteKanbanStage(Val URL, Val StageID, Val AsAdmin = False, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
StageID = "126"; StageID = "126";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Get kanban (My Plan) stages info Get kanban (My Plan) stages info
<br/> <br/>
*Function GetKanbanStages(Val URL, Val EntityID = 0, Val AsAdmin = False, Val Token = "") Export* `Function GetKanbanStages(Val URL, Val EntityID = 0, Val AsAdmin = False, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Move task to another kanban stage Move task to another kanban stage
<br/> <br/>
*Function MoveTaskToKanbanStage(Val URL, Val TaskID, Val StageID, Val Prev = 0, Val After = 0, Val Token = "") Export* `Function MoveTaskToKanbanStage(Val URL, Val TaskID, Val StageID, Val Prev = 0, Val After = 0, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -26,6 +24,9 @@ sidebar_position: 4
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
TaskID = "528"; TaskID = "528";
StageID = "126"; StageID = "126";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Forms a link for authorization via the browser Forms a link for authorization via the browser
<br/> <br/>
*Function GetAppAuthLink(Val Domain, Val ClientID) Export* `Function GetAppAuthLink(Val Domain, Val ClientID) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 1
Returns: String - URL for browser transition Returns: String - URL for browser transition
```bsl title="Code example" ```bsl title="Code example"
Domain = "b24-ar17wx.bitrix24.by"; Domain = "b24-ar17wx.bitrix24.by";
ClientID = "local.6667fc928a50a9.70414732"; ClientID = "local.6667fc928a50a9.70414732";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Get token by auth code Get token by auth code
<br/> <br/>
*Function GetToken(Val ClientID, Val ClientSecret, Val Code) Export* `Function GetToken(Val ClientID, Val ClientSecret, Val Code) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
ClientID = "local.6667fc928a50a9.70414732"; ClientID = "local.6667fc928a50a9.70414732";
ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V..."; ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V...";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Update token by refresh token Update token by refresh token
<br/> <br/>
*Function RefreshToken(Val ClientID, Val ClientSecret, Val Refresh) Export* `Function RefreshToken(Val ClientID, Val ClientSecret, Val Refresh) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
ClientID = "local.6667fc928a50a9.70414732"; ClientID = "local.6667fc928a50a9.70414732";
ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V..."; ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V...";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Get current server time Get current server time
<br/> <br/>
*Function ServerTime(Val URL, Val Token = "") Export* `Function ServerTime(Val URL, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,13 @@ sidebar_position: 4
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [server_time](https://dev.1c-bitrix.ru/rest_help/general/server_time.php)
:::
<br/>
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 7
Create new foldera at the storage Create new foldera at the storage
<br/> <br/>
*Function CreateStorageFolder(Val URL, Val StorageID, Val Name, Val Token = "") Export* `Function CreateStorageFolder(Val URL, Val StorageID, Val Name, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 7
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
StorageID = 3; StorageID = 3;
Name = "New catalog"; Name = "New catalog";

View File

@ -6,12 +6,10 @@ sidebar_position: 9
Create new folder inside another folder Create new folder inside another folder
<br/> <br/>
*Function CreateSubfolder(Val URL, Val FolderID, Val Name, Val Token = "") Export* `Function CreateSubfolder(Val URL, Val FolderID, Val Name, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 9
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
FolderID = "2490"; FolderID = "2490";
Name = "New subfolder"; Name = "New subfolder";

View File

@ -6,12 +6,10 @@ sidebar_position: 12
Delete file by ID Delete file by ID
<br/> <br/>
*Function DeleteFile(Val URL, Val FileID, Val Token = "") Export* `Function DeleteFile(Val URL, Val FileID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 12
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FileID = "488"; FileID = "488";

View File

@ -6,12 +6,10 @@ sidebar_position: 13
Remove folder with subfolders Remove folder with subfolders
<br/> <br/>
*Function DeleteFolder(Val URL, Val FolderID, Val Token = "") Export* `Function DeleteFolder(Val URL, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 13
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FolderID = "480"; FolderID = "480";

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Get information about storage with which the application can work to store its data Get information about storage with which the application can work to store its data
<br/> <br/>
*Function GetAppSotrage(Val URL, Val Token = "") Export* `Function GetAppSotrage(Val URL, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "b24-ar17wx.bitrix24.by"; URL = "b24-ar17wx.bitrix24.by";
Token = "b9df7366006e9f06006b12e400000001000..."; Token = "b9df7366006e9f06006b12e400000001000...";

View File

@ -6,12 +6,10 @@ sidebar_position: 21
Get external link to file Get external link to file
<br/> <br/>
*Function GetFileExternalLink(Val URL, Val FileID, Val Token = "") Export* `Function GetFileExternalLink(Val URL, Val FileID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 21
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FileID = "2484"; FileID = "2484";

View File

@ -6,12 +6,10 @@ sidebar_position: 20
Get information about file by ID Get information about file by ID
<br/> <br/>
*Function GetFileInformation(Val URL, Val FileID, Val Token = "") Export* `Function GetFileInformation(Val URL, Val FileID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 20
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FileID = "2484"; FileID = "2484";

View File

@ -6,12 +6,10 @@ sidebar_position: 14
Get external link to folder Get external link to folder
<br/> <br/>
*Function GetFolderExternalLink(Val URL, Val FolderID, Val Token = "") Export* `Function GetFolderExternalLink(Val URL, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 14
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FolderID = "2490"; FolderID = "2490";

View File

@ -6,12 +6,10 @@ sidebar_position: 27
Returns filter structure for child folder items Returns filter structure for child folder items
<br/> <br/>
*Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export* `Function GetFolderFilterStructure(Val URL, Val Clear = False, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 27
Returns: Structure of Key-Value - Fields structure Returns: Structure of Key-Value - Fields structure
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 8
Get folder information Get folder information
<br/> <br/>
*Function GetFolderInformation(Val URL, Val FolderID, Val Token = "") Export* `Function GetFolderInformation(Val URL, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 8
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FolderID = "2490"; FolderID = "2490";

View File

@ -6,12 +6,10 @@ sidebar_position: 15
Get folder child elements Get folder child elements
<br/> <br/>
*Function GetFolderItems(Val URL, Val FolderID, Val Filter = "", Val Token = "") Export* `Function GetFolderItems(Val URL, Val FolderID, Val Filter = "", Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 15
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FolderID = "2490"; FolderID = "2490";

View File

@ -6,12 +6,10 @@ sidebar_position: 5
Get a list of files and folders, located at the root of the storage Get a list of files and folders, located at the root of the storage
<br/> <br/>
*Function GetStorageObjects(Val URL, Val StorageID, Val Token = "") Export* `Function GetStorageObjects(Val URL, Val StorageID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 5
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
StorageID = 3; StorageID = 3;

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Get information about storage Get information about storage
<br/> <br/>
*Function GetStorage(Val URL, Val StorageID, Val Token = "") Export* `Function GetStorage(Val URL, Val StorageID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
StorageID = 3; StorageID = 3;

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Get list of available files storages Get list of available files storages
<br/> <br/>
*Function GetStoragesList(Val URL, Val Token = "") Export* `Function GetStoragesList(Val URL, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
Result = OPI_Bitrix24.GetStoragesList(URL); Result = OPI_Bitrix24.GetStoragesList(URL);

View File

@ -6,12 +6,10 @@ sidebar_position: 24
Copy file from one destination to another Copy file from one destination to another
<br/> <br/>
*Function MakeFileCopy(Val URL, Val FileID, Val FolderID, Val Token = "") Export* `Function MakeFileCopy(Val URL, Val FileID, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 24
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
FolderID = "2488"; FolderID = "2488";
FileID = "2484"; FileID = "2484";

View File

@ -6,12 +6,10 @@ sidebar_position: 10
Copy one folder to another Copy one folder to another
<br/> <br/>
*Function MakeFolderCopy(Val URL, Val FolderID, Val DestinationID, Val Token = "") Export* `Function MakeFolderCopy(Val URL, Val FolderID, Val DestinationID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 10
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
DestinationID = "2492"; DestinationID = "2492";
FolderID = "2494"; FolderID = "2494";

View File

@ -6,12 +6,10 @@ sidebar_position: 22
Move file to recycle bin Move file to recycle bin
<br/> <br/>
*Function MarkFileAsDeleted(Val URL, Val FileID, Val Token = "") Export* `Function MarkFileAsDeleted(Val URL, Val FileID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 22
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FileID = "2484"; FileID = "2484";

View File

@ -6,12 +6,10 @@ sidebar_position: 16
Move folder to recycle bin Move folder to recycle bin
<br/> <br/>
*Function MarkFolderAsDeleted(Val URL, Val FolderID, Val Token = "") Export* `Function MarkFolderAsDeleted(Val URL, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 16
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FolderID = "2490"; FolderID = "2490";

View File

@ -6,12 +6,10 @@ sidebar_position: 25
Move file from one destination to another Move file from one destination to another
<br/> <br/>
*Function MoveFileToFolder(Val URL, Val FileID, Val FolderID, Val Token = "") Export* `Function MoveFileToFolder(Val URL, Val FileID, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 25
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
FolderID = "2492"; FolderID = "2492";
FileID = "2484"; FileID = "2484";

View File

@ -6,12 +6,10 @@ sidebar_position: 11
Moves one folder inside another Moves one folder inside another
<br/> <br/>
*Function MoveFolder(Val URL, Val FolderID, Val DestinationID, Val Token = "") Export* `Function MoveFolder(Val URL, Val FolderID, Val DestinationID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 11
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
DestinationID = "2488"; DestinationID = "2488";
FolderID = "2494"; FolderID = "2494";

View File

@ -6,12 +6,10 @@ sidebar_position: 26
Changes the name of an existing file Changes the name of an existing file
<br/> <br/>
*Function RenameFile(Val URL, Val FileID, Val Name, Val Token = "") Export* `Function RenameFile(Val URL, Val FileID, Val Name, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 26
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
Name = "New file name.jpg"; Name = "New file name.jpg";
Filename2 = "New file name 2.jpg"; Filename2 = "New file name 2.jpg";

View File

@ -6,12 +6,10 @@ sidebar_position: 18
Change folder name Change folder name
<br/> <br/>
*Function RenameFolder(Val URL, Val FolderID, Val Name, Val Token = "") Export* `Function RenameFolder(Val URL, Val FolderID, Val Name, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 18
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
Name = "New catalog"; Name = "New catalog";
Filename2 = "New folder 2"; Filename2 = "New folder 2";

View File

@ -6,12 +6,10 @@ sidebar_position: 4
Change storage name (for app storage only, see. GetAppStorage) Change storage name (for app storage only, see. GetAppStorage)
<br/> <br/>
*Function RenameStorage(Val URL, Val StorageID, Val Name, Val Token = "") Export* `Function RenameStorage(Val URL, Val StorageID, Val Name, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 4
Returns: HTTPResponse - Rename storage Returns: HTTPResponse - Rename storage
```bsl title="Code example" ```bsl title="Code example"
Name = "New storage name"; Name = "New storage name";
URL = "b24-ar17wx.bitrix24.by"; URL = "b24-ar17wx.bitrix24.by";

View File

@ -6,12 +6,10 @@ sidebar_position: 23
Restore file from recycle bin Restore file from recycle bin
<br/> <br/>
*Function RestoreFile(Val URL, Val FileID, Val Token = "") Export* `Function RestoreFile(Val URL, Val FileID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 23
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FileID = "2484"; FileID = "2484";

View File

@ -6,12 +6,10 @@ sidebar_position: 17
Resotre folder form recycle bin Resotre folder form recycle bin
<br/> <br/>
*Function RestoreFolder(Val URL, Val FolderID, Val Token = "") Export* `Function RestoreFolder(Val URL, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 17
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
FolderID = "2490"; FolderID = "2490";

View File

@ -6,12 +6,10 @@ sidebar_position: 19
Upload local file to the folder Upload local file to the folder
<br/> <br/>
*Function UploadFileToFolder(Val URL, Val Name, Val File, Val FolderID, Val Token = "") Export* `Function UploadFileToFolder(Val URL, Val Name, Val File, Val FolderID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 19
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
Filename2 = "Picture2.jpg"; Filename2 = "Picture2.jpg";
Name = "Picture1.jpg"; Name = "Picture1.jpg";

View File

@ -6,12 +6,10 @@ sidebar_position: 6
Upload file to storage root Upload file to storage root
<br/> <br/>
*Function UploadFileToStorage(Val URL, Val Name, Val File, Val StorageID, Val Rights = "", Val Token = "") Export* `Function UploadFileToStorage(Val URL, Val Name, Val File, Val StorageID, Val Rights = "", Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -26,6 +24,9 @@ sidebar_position: 6
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
Filename2 = "Picture2.jpg"; Filename2 = "Picture2.jpg";
Name = "Picture1.jpg"; Name = "Picture1.jpg";

View File

@ -6,12 +6,10 @@ sidebar_position: 17
Add task to favorites list Add task to favorites list
<br/> <br/>
*Function AddTaskToFavorites(Val URL, Val TaskID, Val Token = "") Export* `Function AddTaskToFavorites(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 17
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 7
Approve task by ID Approve task by ID
<br/> <br/>
*Function ApproveTask(Val URL, Val TaskID, Val Token = "") Export* `Function ApproveTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 7
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 6
Attaches a file to the selected task Attaches a file to the selected task
<br/> <br/>
*Function AttachFileToTopic(Val URL, Val TaskID, Val FileID, Val Token = "") Export* `Function AttachFileToTopic(Val URL, Val TaskID, Val FileID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 6
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "500"; TaskID = "500";

View File

@ -6,12 +6,10 @@ sidebar_position: 20
Checks the availability of the task for users Checks the availability of the task for users
<br/> <br/>
*Function CheckTaskAccesses(Val URL, Val TaskID, Val Users = "", Val Token = "") Export* `Function CheckTaskAccesses(Val URL, Val TaskID, Val Users = "", Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 20
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
ArrayOfUsers = New Array; ArrayOfUsers = New Array;
ArrayOfUsers.Add("1"); ArrayOfUsers.Add("1");

View File

@ -6,12 +6,10 @@ sidebar_position: 9
Complete task by ID Complete task by ID
<br/> <br/>
*Function CompleteTask(Val URL, Val TaskID, Val Token = "") Export* `Function CompleteTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 9
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 3
Create new task by fields structure (see GetTaskFieldsStructure) Create new task by fields structure (see GetTaskFieldsStructure)
<br/> <br/>
*Function CreateTask(Val URL, Val FieldsStructure, Val Token = "") Export* `Function CreateTask(Val URL, Val FieldsStructure, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 3
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
// The complete structure of the fields can be obtained by the GetTaskFieldsStructure() function() // The complete structure of the fields can be obtained by the GetTaskFieldsStructure() function()

View File

@ -6,12 +6,10 @@ sidebar_position: 23
Creates the dependency of one task to another Creates the dependency of one task to another
<br/> <br/>
*Function CreateTasksDependencies(Val URL, Val FromID, Val DestinationID, Val LinkType, Val Token = "") Export* `Function CreateTasksDependencies(Val URL, Val FromID, Val DestinationID, Val LinkType, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -25,6 +23,9 @@ sidebar_position: 23
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
FromID = "500"; FromID = "500";
DestinationID = "502"; DestinationID = "502";

View File

@ -6,12 +6,10 @@ sidebar_position: 11
Defer task by ID Defer task by ID
<br/> <br/>
*Function DeferTask(Val URL, Val TaskID, Val Token = "") Export* `Function DeferTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 11
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 16
Delegate task to another user Delegate task to another user
<br/> <br/>
*Function DelegateTask(Val URL, Val TaskID, Val UserID, Val Token = "") Export* `Function DelegateTask(Val URL, Val TaskID, Val UserID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 16
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 5
Delete task by ID Delete task by ID
<br/> <br/>
*Function DeleteTask(Val URL, Val TaskID, Val Token = "") Export* `Function DeleteTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 5
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 24
Removes the dependency of one task to another Removes the dependency of one task to another
<br/> <br/>
*Function DeleteTasksDependencies(Val URL, Val FromID, Val DestinationID, Val LinkType, Val Token = "") Export* `Function DeleteTasksDependencies(Val URL, Val FromID, Val DestinationID, Val LinkType, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -28,6 +26,9 @@ sidebar_position: 24
```sh title="CLI command example" ```sh title="CLI command example"
oint bitrix24 DeleteTasksDependencies --url %url% --taskfrom %taskfrom% --taskto %taskto% --linktype %linktype% --token %token% oint bitrix24 DeleteTasksDependencies --url %url% --taskfrom %taskfrom% --taskto %taskto% --linktype %linktype% --token %token%

View File

@ -6,12 +6,10 @@ sidebar_position: 8
Disapprove task by ID Disapprove task by ID
<br/> <br/>
*Function DisapproveTask(Val URL, Val TaskID, Val Token = "") Export* `Function DisapproveTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 8
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 25
Gets a structure with a description of the fields for creating a task Gets a structure with a description of the fields for creating a task
<br/> <br/>
*Function GetTaskFieldsStructure(Val URL, Val Token = "") Export* `Function GetTaskFieldsStructure(Val URL, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -22,6 +20,9 @@ sidebar_position: 25
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";

View File

@ -6,12 +6,10 @@ sidebar_position: 19
Get history of task changing Get history of task changing
<br/> <br/>
*Function GetTaskHistory(Val URL, Val TaskID, Val Token = "") Export* `Function GetTaskHistory(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 19
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 1
Get task by ID Get task by ID
<br/> <br/>
*Function GetTask(Val URL, Val TaskID, Val Token = "") Export* `Function GetTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 1
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 26
Return filter structure for GetTasksList Return filter structure for GetTasksList
<br/> <br/>
*Function GetTasksFilterStructure(Val Clear = False) Export* `Function GetTasksFilterStructure(Val Clear = False) Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 26
```sh title="CLI command example" ```sh title="CLI command example"
oint bitrix24 GetTasksFilterStructure --empty %empty% oint bitrix24 GetTasksFilterStructure --empty %empty%

View File

@ -6,12 +6,10 @@ sidebar_position: 2
Get tasks list (50 at one response max)) Get tasks list (50 at one response max))
<br/> <br/>
*Function GetTasksList(Val URL, Val Filter = "", Val Indent = 0, Val Token = "") Export* `Function GetTasksList(Val URL, Val Filter = "", Val Indent = 0, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -24,6 +22,9 @@ sidebar_position: 2
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
// Full filter structer you can find at GetTasksFilterStructure method // Full filter structer you can find at GetTasksFilterStructure method
Filter = New Structure; Filter = New Structure;

View File

@ -6,12 +6,10 @@ sidebar_position: 21
Mute task by ID Mute task by ID
<br/> <br/>
*Function MuteTask(Val URL, Val TaskID, Val Token = "") Export* `Function MuteTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 21
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "500"; TaskID = "500";

View File

@ -6,12 +6,10 @@ sidebar_position: 12
Pause a task by ID Pause a task by ID
<br/> <br/>
*Function PauseTask(Val URL, Val TaskID, Val Token = "") Export* `Function PauseTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 12
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 18
Delete task from favorites list Delete task from favorites list
<br/> <br/>
*Function RemoveTaskFromFavorites(Val URL, Val TaskID, Val Token = "") Export* `Function RemoveTaskFromFavorites(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 18
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 10
Returns a task to work by ID Returns a task to work by ID
<br/> <br/>
*Function RenewTask(Val URL, Val TaskID, Val Token = "") Export* `Function RenewTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 10
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 13
Start a task by ID Start a task by ID
<br/> <br/>
*Function StartTask(Val URL, Val TaskID, Val Token = "") Export* `Function StartTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 13
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 14
Start watching a task by ID Start watching a task by ID
<br/> <br/>
*Function StartWatchingTask(Val URL, Val TaskID, Val Token = "") Export* `Function StartWatchingTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 14
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

View File

@ -6,12 +6,10 @@ sidebar_position: 15
Stop watching a task by ID Stop watching a task by ID
<br/> <br/>
*Function StopWatchingTask(Val URL, Val TaskID, Val Token = "") Export* `Function StopWatchingTask(Val URL, Val TaskID, Val Token = "") Export`
| Parameter | CLI option | Type | Destination | | Parameter | CLI option | Type | Destination |
|-|-|-|-| |-|-|-|-|
@ -23,6 +21,9 @@ sidebar_position: 15
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
```bsl title="Code example" ```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
TaskID = "168"; TaskID = "168";

Some files were not shown because too many files have changed in this diff Show More