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 14:11:17 +03:00
parent a7dad7b0c6
commit 16b2c0592e
667 changed files with 1321 additions and 2054 deletions

View File

@ -524,6 +524,8 @@
КонецЕсли; КонецЕсли;
Результат = СокрЛП(Результат);
Если ЗначениеЗаполнено(Результат) Тогда Если ЗначениеЗаполнено(Результат) Тогда
Результат = "```bsl title=""Пример кода""" Результат = "```bsl title=""Пример кода"""
@ -678,8 +680,9 @@
КонецЦикла; КонецЦикла;
Результат = СокрЛП(Результат);
Если ЗначениеЗаполнено(Результат) Тогда Если ЗначениеЗаполнено(Результат) Тогда
Результат = Лев(Результат, СтрДлина(Результат) - 1);
Результат = "```json title=""Результат""" Результат = "```json title=""Результат"""
+ Символы.ПС + Символы.ПС
@ -689,7 +692,7 @@
КонецЕсли; КонецЕсли;
Возврат СокрЛП(Результат); Возврат Результат;
КонецФункции КонецФункции

View File

@ -28,15 +28,13 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Record = "recV6DxeLQMBNJrUk"; Record = "recV6DxeLQMBNJrUk";
Text = "TestComment"; Text = "TestComment";
Response = OPI_Airtable.CreateComment(Token, Base, Table, Record, Text); //Map Response = OPI_Airtable.CreateComment(Token, Base, Table, Record, Text); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -48,7 +46,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "comL1oGEDJvIQlMs1", "id": "comL1oGEDJvIQlMs1",
"author": { "author": {
"id": "usrFlaAHlTfYWAbVW", "id": "usrFlaAHlTfYWAbVW",

View File

@ -28,15 +28,13 @@ sidebar_position: 4
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Record = "recV6DxeLQMBNJrUk"; Record = "recV6DxeLQMBNJrUk";
Comment = "comL1oGEDJvIQlMs1"; Comment = "comL1oGEDJvIQlMs1";
Response = OPI_Airtable.DeleteComment(Token, Base, Table, Record, Comment); //Map Response = OPI_Airtable.DeleteComment(Token, Base, Table, Record, Comment); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -48,7 +46,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "comL1oGEDJvIQlMs1", "id": "comL1oGEDJvIQlMs1",
"deleted": true "deleted": true
} }

View File

@ -29,8 +29,7 @@ sidebar_position: 3
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Record = "recV6DxeLQMBNJrUk"; Record = "recV6DxeLQMBNJrUk";
Comment = "comL1oGEDJvIQlMs1"; Comment = "comL1oGEDJvIQlMs1";
@ -38,7 +37,6 @@ sidebar_position: 3
Response = OPI_Airtable.EditComment(Token, Base, Table, Record, Comment, Text); //Map Response = OPI_Airtable.EditComment(Token, Base, Table, Record, Comment, Text); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -50,7 +48,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "comL1oGEDJvIQlMs1", "id": "comL1oGEDJvIQlMs1",
"author": { "author": {
"id": "usrFlaAHlTfYWAbVW", "id": "usrFlaAHlTfYWAbVW",

View File

@ -28,14 +28,12 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Record = "recV6DxeLQMBNJrUk"; Record = "recV6DxeLQMBNJrUk";
Response = OPI_Airtable.GetComments(Token, Base, Table, Record); //Map Response = OPI_Airtable.GetComments(Token, Base, Table, Record); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -47,7 +45,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"comments": [ "comments": [
{ {
"id": "comL1oGEDJvIQlMs1", "id": "comL1oGEDJvIQlMs1",

View File

@ -27,8 +27,7 @@ sidebar_position: 3
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Numeric = 10; Numeric = 10;
StringType = "Hello"; StringType = "Hello";
@ -42,7 +41,6 @@ sidebar_position: 3
Response = OPI_Airtable.CreatePosts(Token, Base, Table, Data); //Map Response = OPI_Airtable.CreatePosts(Token, Base, Table, Data); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -54,7 +52,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"records": [ "records": [
{ {
"id": "recjHNKNZBWLZkZ7A", "id": "recjHNKNZBWLZkZ7A",

View File

@ -27,8 +27,7 @@ sidebar_position: 4
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Records = New Array; Records = New Array;
@ -37,7 +36,6 @@ sidebar_position: 4
Response = OPI_Airtable.DeletePosts(Token, Base, Table, Record); //Map Response = OPI_Airtable.DeletePosts(Token, Base, Table, Record); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -49,7 +47,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"records": [ "records": [
{ {
"deleted": true, "deleted": true,

View File

@ -27,13 +27,11 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Response = OPI_Airtable.GetListOfRecords(Token, Base, Table, Indent); //Map Response = OPI_Airtable.GetListOfRecords(Token, Base, Table, Indent); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -45,7 +43,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"records": [ "records": [
{ {
"id": "recGyJ0MlN1H3GMuN", "id": "recGyJ0MlN1H3GMuN",

View File

@ -27,14 +27,12 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Record = "recV6DxeLQMBNJrUk"; Record = "recV6DxeLQMBNJrUk";
Response = OPI_Airtable.GetRecord(Token, Base, Table, Record); //Map Response = OPI_Airtable.GetRecord(Token, Base, Table, Record); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -46,7 +44,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "recV6DxeLQMBNJrUk", "id": "recV6DxeLQMBNJrUk",
"createdTime": "2024-05-10T19:39:51Z", "createdTime": "2024-05-10T19:39:51Z",
"fields": { "fields": {

View File

@ -28,8 +28,7 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
TableName = "TestTable2"; TableName = "TestTable2";
Description = "NewTable"; Description = "NewTable";
@ -45,7 +44,6 @@ sidebar_position: 1
Response = OPI_Airtable.CreateTable(Token, Base, Name, FieldArray, Description); //Map Response = OPI_Airtable.CreateTable(Token, Base, Name, FieldArray, Description); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -57,7 +55,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "tblT64aWyrMUAbUmF", "id": "tblT64aWyrMUAbUmF",
"name": "TestTable2", "name": "TestTable2",
"description": "NewTable", "description": "NewTable",

View File

@ -28,15 +28,13 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Name = "Test table 2 (change.)"; Name = "Test table 2 (change.)";
Description = "New table (change.)"; Description = "New table (change.)";
Response = OPI_Airtable.ModifyTable(Token, Base, Table, Name, Description); //Map Response = OPI_Airtable.ModifyTable(Token, Base, Table, Name, Description); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -48,7 +46,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "tblT64aWyrMUAbUmF", "id": "tblT64aWyrMUAbUmF",
"name": "Test table 2 (change.)", "name": "Test table 2 (change.)",
"description": "New table (change.)", "description": "New table (change.)",

View File

@ -27,8 +27,7 @@ sidebar_position: 3
```bsl title="Code example" ```bsl title="Code example"
Workspace = "wspdf8yl1yZz3PmWZ";
Workspace = "wspdf8yl1yZz3PmWZ";
Name = "TestDatabase"; Name = "TestDatabase";
FieldArray = New Array; FieldArray = New Array;
@ -42,7 +41,6 @@ sidebar_position: 3
Response = OPI_Airtable.CreateDatabase(Token, Workspace, Name, TableCollection); //Map Response = OPI_Airtable.CreateDatabase(Token, Workspace, Name, TableCollection); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -54,7 +52,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"id": "applEsyJmBRm12AuN", "id": "applEsyJmBRm12AuN",
"tables": [ "tables": [
{ {

View File

@ -25,12 +25,10 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Response = OPI_Airtable.GetDatabaseTables(Token, Base); //Map Response = OPI_Airtable.GetDatabaseTables(Token, Base); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -42,7 +40,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"tables": [ "tables": [
{ {
"id": "tblqZzW78Rvsdt9gt", "id": "tblqZzW78Rvsdt9gt",

View File

@ -25,11 +25,8 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
Response = OPI_Airtable.GetListOfBases(Token); //Map
Response = OPI_Airtable.GetListOfBases(Token); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +38,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"bases": [ "bases": [
{ {
"id": "appGarzKZ0lu3gzoa", "id": "appGarzKZ0lu3gzoa",

View File

@ -27,15 +27,13 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Name = String(New UUID); Name = String(New UUID);
Field = OPI_Airtable.GetNumberField(Name); Field = OPI_Airtable.GetNumberField(Name);
Response = OPI_Airtable.CreateField(Token, Base, Table, FieldStructure); //Map Response = OPI_Airtable.CreateField(Token, Base, Table, FieldStructure); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -47,7 +45,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"type": "number", "type": "number",
"options": { "options": {
"precision": 0 "precision": 0

View File

@ -24,12 +24,10 @@ sidebar_position: 5
```bsl title="Code example" ```bsl title="Code example"
Name = "Attachment";
Name = "Attachment";
Response = OPI_Airtable.GetAttachmentField(Name); //Map Response = OPI_Airtable.GetAttachmentField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 5
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Attachment", "name": "Attachment",
"type": "multipleAttachments" "type": "multipleAttachments"
} }

View File

@ -24,12 +24,10 @@ sidebar_position: 6
```bsl title="Code example" ```bsl title="Code example"
Name = "Checkbox";
Name = "Checkbox";
Response = OPI_Airtable.GetCheckboxField(Name); //Map Response = OPI_Airtable.GetCheckboxField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 6
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Checkbox", "name": "Checkbox",
"type": "checkbox", "type": "checkbox",
"options": { "options": {

View File

@ -24,12 +24,10 @@ sidebar_position: 7
```bsl title="Code example" ```bsl title="Code example"
Name = "Date";
Name = "Date";
Response = OPI_Airtable.GetDateField(Name); //Map Response = OPI_Airtable.GetDateField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 7
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Date", "name": "Date",
"type": "date", "type": "date",
"options": { "options": {

View File

@ -24,12 +24,10 @@ sidebar_position: 8
```bsl title="Code example" ```bsl title="Code example"
Name = "Email";
Name = "Email";
Response = OPI_Airtable.GetEmailField(Name); //Map Response = OPI_Airtable.GetEmailField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 8
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Email", "name": "Email",
"type": "email" "type": "email"
} }

View File

@ -24,12 +24,10 @@ sidebar_position: 10
```bsl title="Code example" ```bsl title="Code example"
Name = "Link";
Name = "Link";
Response = OPI_Airtable.GetLinkField(Name); //Map Response = OPI_Airtable.GetLinkField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 10
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Link", "name": "Link",
"type": "url" "type": "url"
} }

View File

@ -25,13 +25,11 @@ sidebar_position: 4
```bsl title="Code example" ```bsl title="Code example"
Name = "Number";
Name = "Number";
Precision = "0"; Precision = "0";
Response = OPI_Airtable.GetNumberField(Name, Precision); //Map Response = OPI_Airtable.GetNumberField(Name, Precision); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -43,7 +41,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Number", "name": "Number",
"type": "number", "type": "number",
"options": { "options": {

View File

@ -24,12 +24,10 @@ sidebar_position: 9
```bsl title="Code example" ```bsl title="Code example"
Name = "Phone";
Name = "Phone";
Response = OPI_Airtable.GetPhoneField(Name); //Map Response = OPI_Airtable.GetPhoneField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 9
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "Phone", "name": "Phone",
"type": "phoneNumber" "type": "phoneNumber"
} }

View File

@ -24,12 +24,10 @@ sidebar_position: 3
```bsl title="Code example" ```bsl title="Code example"
Name = "String";
Name = "String";
Response = OPI_Airtable.GetStringField(Name); //Map Response = OPI_Airtable.GetStringField(Name); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -41,7 +39,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"name": "String", "name": "String",
"type": "richText" "type": "richText"
} }

View File

@ -29,8 +29,7 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
Base = "apptm8Xqo7TwMaipQ";
Base = "apptm8Xqo7TwMaipQ";
Table = "tbl9G4jVoTJpxYwSY"; Table = "tbl9G4jVoTJpxYwSY";
Field = "fld3IbFtHZtBHQwsk"; Field = "fld3IbFtHZtBHQwsk";
Name = String(New UUID) + "(change.)"; Name = String(New UUID) + "(change.)";
@ -38,7 +37,6 @@ sidebar_position: 2
Response = OPI_Airtable.ModifyField(Token, Base, Table, Field, Name, Description); //Map Response = OPI_Airtable.ModifyField(Token, Base, Table, Field, Name, Description); //Map
Response = OPI_Tools.JSONString(Response); //JSON string Response = OPI_Tools.JSONString(Response); //JSON string
``` ```
@ -50,7 +48,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"type": "number", "type": "number",
"options": { "options": {
"precision": 0 "precision": 0

View File

@ -27,7 +27,7 @@ sidebar_position: 3
```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";
Text = "Task impossible, let's split up"; Text = "Task impossible, let's split up";
@ -53,7 +53,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"result": 1376, "result": 1376,
"time": { "time": {
"start": 1720186702.77405, "start": 1720186702.77405,

View File

@ -26,7 +26,7 @@ sidebar_position: 7
```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";
Result = OPI_Bitrix24.CreateResultFromComment(URL, CommentID); Result = OPI_Bitrix24.CreateResultFromComment(URL, CommentID);
@ -48,7 +48,7 @@ sidebar_position: 7
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"id": 130, "id": 130,
"taskId": 432, "taskId": 432,

View File

@ -26,7 +26,7 @@ sidebar_position: 8
```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";
Result = OPI_Bitrix24.DeleteResultFromComment(URL, CommentID); Result = OPI_Bitrix24.DeleteResultFromComment(URL, CommentID);
@ -48,7 +48,7 @@ sidebar_position: 8
``` ```
```json title="Result" ```json title="Result"
{ {
"result": null, "result": null,
"time": { "time": {
"start": 1720295536.04613, "start": 1720295536.04613,

View File

@ -27,7 +27,7 @@ sidebar_position: 5
```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";
CommentID = "1718"; CommentID = "1718";
@ -50,7 +50,7 @@ sidebar_position: 5
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1720295541.27592, "start": 1720295541.27592,

View File

@ -26,7 +26,7 @@ sidebar_position: 6
```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";
Result = OPI_Bitrix24.GetResultsList(URL, TaskID); Result = OPI_Bitrix24.GetResultsList(URL, TaskID);
@ -47,7 +47,7 @@ sidebar_position: 6
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
{ {
"id": 130, "id": 130,

View File

@ -27,7 +27,7 @@ sidebar_position: 2
```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";
TaskID = "504"; TaskID = "504";
@ -50,7 +50,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"POST_MESSAGE_HTML": null, "POST_MESSAGE_HTML": null,
"ID": "1496", "ID": "1496",

View File

@ -26,7 +26,7 @@ sidebar_position: 1
```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";
Result = OPI_Bitrix24.GetTaskCommentsList(URL, TaskID); Result = OPI_Bitrix24.GetTaskCommentsList(URL, TaskID);
@ -47,7 +47,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
{ {
"POST_MESSAGE_HTML": null, "POST_MESSAGE_HTML": null,

View File

@ -28,7 +28,7 @@ sidebar_position: 4
```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";
CommentID = "1718"; CommentID = "1718";
@ -55,7 +55,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1720186705.11133, "start": 1720186705.11133,

View File

@ -30,7 +30,7 @@ Method at API documentation: [log.blogcomment.add](https://dev.1c-bitrix.ru/rest
```bsl title="Code example" ```bsl title="Code example"
Text = "Comment for post"; Text = "Comment for post";
PostID = "260"; PostID = "260";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -53,7 +53,7 @@ Method at API documentation: [log.blogcomment.add](https://dev.1c-bitrix.ru/rest
``` ```
```json title="Result" ```json title="Result"
{ {
"result": 168, "result": 168,
"time": { "time": {
"start": 1720186639.67208, "start": 1720186639.67208,

View File

@ -30,7 +30,7 @@ Method at API documentation: [log.blogpost.share](https://dev.1c-bitrix.ru/rest_
```bsl title="Code example" ```bsl title="Code example"
Visibility = "UA"; Visibility = "UA";
PostID = "124"; PostID = "124";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -52,7 +52,7 @@ Method at API documentation: [log.blogpost.share](https://dev.1c-bitrix.ru/rest_
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1718473318.17435, "start": 1718473318.17435,

View File

@ -33,7 +33,7 @@ Method at API documentation: [log.blogpost.add](https://dev.1c-bitrix.ru/rest_he
```bsl title="Code example" ```bsl title="Code example"
Text = "Text of post"; Text = "Text of post";
Title = "Post title"; Title = "Post title";
Image1 = "https://openintegrations.dev/test_data/picture.jpg"; Image1 = "https://openintegrations.dev/test_data/picture.jpg";
Image2 = "https://openintegrations.dev/test_data/picture2.jpg"; Image2 = "https://openintegrations.dev/test_data/picture2.jpg";
@ -63,7 +63,7 @@ Method at API documentation: [log.blogpost.add](https://dev.1c-bitrix.ru/rest_he
``` ```
```json title="Result" ```json title="Result"
{ {
"result": 18, "result": 18,
"time": { "time": {
"start": 1718130364.82176, "start": 1718130364.82176,

View File

@ -29,7 +29,7 @@ Method at API documentation: [log.blogpost.delete](https://dev.1c-bitrix.ru/rest
```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/";
Result = OPI_Bitrix24.DeletePost(URL, PostID); Result = OPI_Bitrix24.DeletePost(URL, PostID);
@ -51,7 +51,7 @@ Method at API documentation: [log.blogpost.delete](https://dev.1c-bitrix.ru/rest
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1718130367.40777, "start": 1718130367.40777,

View File

@ -29,7 +29,7 @@ Method at API documentation: [log.blogpost.getusers.important](https://dev.1c-bi
```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/";
Result = OPI_Bitrix24.GetImportantPostViewers(URL, PostID); Result = OPI_Bitrix24.GetImportantPostViewers(URL, PostID);
@ -50,7 +50,7 @@ Method at API documentation: [log.blogpost.getusers.important](https://dev.1c-bi
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
"1" "1"
], ],

View File

@ -30,7 +30,7 @@ Method at API documentation: [log.blogpost.get](https://dev.1c-bitrix.ru/rest_he
```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/";
Result = OPI_Bitrix24.GetPosts(URL, PostID); Result = OPI_Bitrix24.GetPosts(URL, PostID);
@ -51,7 +51,7 @@ Method at API documentation: [log.blogpost.get](https://dev.1c-bitrix.ru/rest_he
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
{ {
"ID": "40", "ID": "40",

View File

@ -33,7 +33,7 @@ Method at API documentation: [log.blogpost.update](https://dev.1c-bitrix.ru/rest
```bsl title="Code example" ```bsl title="Code example"
Text = "New post text"; Text = "New post text";
Title = "New post title"; Title = "New post title";
Image1 = "https://openintegrations.dev/test_data/picture.jpg"; Image1 = "https://openintegrations.dev/test_data/picture.jpg";
PostID = "124"; PostID = "124";
@ -62,7 +62,7 @@ Method at API documentation: [log.blogpost.update](https://dev.1c-bitrix.ru/rest
``` ```
```json title="Result" ```json title="Result"
{ {
"result": 86, "result": 86,
"time": { "time": {
"start": 1718473311.53949, "start": 1718473311.53949,

View File

@ -30,7 +30,7 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
Name = "New stage"; Name = "New stage";
Color = "0026FF"; Color = "0026FF";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -57,7 +57,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"result": 132, "result": 132,
"time": { "time": {
"start": 1720600360.58899, "start": 1720600360.58899,

View File

@ -27,7 +27,7 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
StageID = "126"; StageID = "126";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -51,7 +51,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1720600367.83205, "start": 1720600367.83205,

View File

@ -27,7 +27,7 @@ sidebar_position: 3
```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.GetKanbanStages(URL,, True); Result = OPI_Bitrix24.GetKanbanStages(URL,, True);
@ -47,7 +47,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"20": { "20": {
"ID": "20", "ID": "20",

View File

@ -29,7 +29,7 @@ sidebar_position: 4
```bsl title="Code example" ```bsl title="Code example"
TaskID = "528"; TaskID = "528";
StageID = "126"; StageID = "126";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -54,7 +54,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1720600364.06058, "start": 1720600364.06058,

View File

@ -25,7 +25,7 @@ sidebar_position: 1
```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";
Result = OPI_Bitrix24.GetAppAuthLink(Domain, ClientID); Result = OPI_Bitrix24.GetAppAuthLink(Domain, ClientID);
@ -40,5 +40,5 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
"https://b24-ar17wx.bitrix24.by/oauth/authorize/?client_id=local.6667fc928a50a9.70414732" "https://b24-ar17wx.bitrix24.by/oauth/authorize/?client_id=local.6667fc928a50a9.70414732"
``` ```

View File

@ -26,7 +26,7 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
ClientID = "local.6667fc928a50a9.70414732"; ClientID = "local.6667fc928a50a9.70414732";
ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V..."; ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V...";
Code = "2b096866006e9f06006b12e400000001000007fc1bc681f7ed7f13f2d449980628008c"; Code = "2b096866006e9f06006b12e400000001000007fc1bc681f7ed7f13f2d449980628008c";
@ -42,7 +42,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"error": "expired_token", "error": "expired_token",
"error_description": "The authorization token provided has expired." "error_description": "The authorization token provided has expired."
} }

View File

@ -26,7 +26,7 @@ sidebar_position: 3
```bsl title="Code example" ```bsl title="Code example"
ClientID = "local.6667fc928a50a9.70414732"; ClientID = "local.6667fc928a50a9.70414732";
ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V..."; ClientSecret = "ZeKyeYIgy2NsHZqsIHY6GfG1V...";
Refresh = "a95e9b66006e9f06006b12e400000001000..."; Refresh = "a95e9b66006e9f06006b12e400000001000...";
@ -42,7 +42,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"access_token": "63a46866006e9f06006b12e4000000010000071997e1f54c1043e9f7193734af3018df", "access_token": "63a46866006e9f06006b12e4000000010000071997e1f54c1043e9f7193734af3018df",
"expires": 1718133859, "expires": 1718133859,
"expires_in": 3600, "expires_in": 3600,

View File

@ -28,7 +28,7 @@ Method at API documentation: [server_time](https://dev.1c-bitrix.ru/rest_help/ge
```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.ServerTime(URL); Result = OPI_Bitrix24.ServerTime(URL);
@ -48,7 +48,7 @@ Method at API documentation: [server_time](https://dev.1c-bitrix.ru/rest_help/ge
``` ```
```json title="Result" ```json title="Result"
{ {
"result": "2024-06-13T18:40:54+00:00", "result": "2024-06-13T18:40:54+00:00",
"time": { "time": {
"start": 1718304054.57877, "start": 1718304054.57877,

View File

@ -27,7 +27,7 @@ sidebar_position: 7
```bsl title="Code example" ```bsl title="Code example"
StorageID = 3; StorageID = 3;
Name = "New catalog"; Name = "New catalog";
Filename2 = "New folder 2"; Filename2 = "New folder 2";
@ -52,7 +52,7 @@ sidebar_position: 7
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": 574, "ID": 574,
"NAME": "New catalog", "NAME": "New catalog",

View File

@ -27,7 +27,7 @@ sidebar_position: 9
```bsl title="Code example" ```bsl title="Code example"
FolderID = "2490"; FolderID = "2490";
Name = "New subfolder"; Name = "New subfolder";
Filename2 = "New subfolder 2"; Filename2 = "New subfolder 2";
@ -52,7 +52,7 @@ sidebar_position: 9
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": 850, "ID": 850,
"NAME": "New subfolder", "NAME": "New subfolder",

View File

@ -26,7 +26,7 @@ sidebar_position: 12
```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";
Result = OPI_Bitrix24.DeleteFile(URL, FileID); Result = OPI_Bitrix24.DeleteFile(URL, FileID);
@ -48,7 +48,7 @@ sidebar_position: 12
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1718783933.86753, "start": 1718783933.86753,

View File

@ -26,7 +26,7 @@ sidebar_position: 13
```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";
Result = OPI_Bitrix24.DeleteFolder(URL, FolderID); Result = OPI_Bitrix24.DeleteFolder(URL, FolderID);
@ -48,7 +48,7 @@ sidebar_position: 13
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1719047257.50616, "start": 1719047257.50616,

View File

@ -25,7 +25,7 @@ sidebar_position: 2
```bsl title="Code example" ```bsl title="Code example"
URL = "b24-ar17wx.bitrix24.by"; URL = "b24-ar17wx.bitrix24.by";
Token = "b9df7366006e9f06006b12e400000001000..."; Token = "b9df7366006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.GetAppSotrage(URL, Token); Result = OPI_Bitrix24.GetAppSotrage(URL, Token);

View File

@ -26,7 +26,7 @@ sidebar_position: 21
```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";
Result = OPI_Bitrix24.GetFileExternalLink(URL, FileID); Result = OPI_Bitrix24.GetFileExternalLink(URL, FileID);
@ -47,7 +47,7 @@ sidebar_position: 21
``` ```
```json title="Result" ```json title="Result"
{ {
"result": "https://b24-ar17wx.bitrix24.by/~pT3DD", "result": "https://b24-ar17wx.bitrix24.by/~pT3DD",
"time": { "time": {
"start": 1720017752.7023, "start": 1720017752.7023,

View File

@ -26,7 +26,7 @@ sidebar_position: 20
```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";
Result = OPI_Bitrix24.GetFileInformation(URL, FileID); Result = OPI_Bitrix24.GetFileInformation(URL, FileID);
@ -47,7 +47,7 @@ sidebar_position: 20
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "1716", "ID": "1716",
"NAME": "Picture1.jpg", "NAME": "Picture1.jpg",

View File

@ -26,7 +26,7 @@ sidebar_position: 14
```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";
Result = OPI_Bitrix24.GetFolderExternalLink(URL, FolderID); Result = OPI_Bitrix24.GetFolderExternalLink(URL, FolderID);
@ -47,7 +47,7 @@ sidebar_position: 14
``` ```
```json title="Result" ```json title="Result"
{ {
"result": "https://b24-ar17wx.bitrix24.by/~hWalI", "result": "https://b24-ar17wx.bitrix24.by/~hWalI",
"time": { "time": {
"start": 1719472796.12325, "start": 1719472796.12325,

View File

@ -26,7 +26,7 @@ sidebar_position: 27
```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.GetFolderFilterStructure(URL); Result = OPI_Bitrix24.GetFolderFilterStructure(URL);
@ -46,7 +46,7 @@ sidebar_position: 27
``` ```
```json title="Result" ```json title="Result"
{ {
"ID": "", "ID": "",
"NAME": "", "NAME": "",
"TYPE": "", "TYPE": "",

View File

@ -26,7 +26,7 @@ sidebar_position: 8
```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";
Result = OPI_Bitrix24.GetFolderInformation(URL, FolderID); Result = OPI_Bitrix24.GetFolderInformation(URL, FolderID);
@ -47,7 +47,7 @@ sidebar_position: 8
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "1722", "ID": "1722",
"NAME": "New catalog", "NAME": "New catalog",

View File

@ -27,7 +27,7 @@ sidebar_position: 15
```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";
Result = OPI_Bitrix24.GetFolderItems(URL, FolderID); Result = OPI_Bitrix24.GetFolderItems(URL, FolderID);
@ -48,7 +48,7 @@ sidebar_position: 15
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
{ {
"ID": "848", "ID": "848",

View File

@ -26,7 +26,7 @@ sidebar_position: 5
```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;
Result = OPI_Bitrix24.GetStorageObjects(URL, StorageID); Result = OPI_Bitrix24.GetStorageObjects(URL, StorageID);
@ -46,7 +46,7 @@ sidebar_position: 5
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
{ {
"ID": "568", "ID": "568",

View File

@ -26,7 +26,7 @@ sidebar_position: 3
```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;
Result = OPI_Bitrix24.GetStorage(URL, StorageID); Result = OPI_Bitrix24.GetStorage(URL, StorageID);
@ -47,7 +47,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "3", "ID": "3",
"NAME": "Main drive", "NAME": "Main drive",

View File

@ -25,7 +25,7 @@ sidebar_position: 1
```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);
@ -44,7 +44,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [ "result": [
{ {
"ID": "3", "ID": "3",

View File

@ -27,7 +27,7 @@ sidebar_position: 24
```bsl title="Code example" ```bsl title="Code example"
FolderID = "2488"; FolderID = "2488";
FileID = "2484"; FileID = "2484";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -54,7 +54,7 @@ sidebar_position: 24
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": 1744, "ID": 1744,
"NAME": "New file name.jpg", "NAME": "New file name.jpg",

View File

@ -27,7 +27,7 @@ sidebar_position: 10
```bsl title="Code example" ```bsl title="Code example"
DestinationID = "2492"; DestinationID = "2492";
FolderID = "2494"; FolderID = "2494";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -55,7 +55,7 @@ sidebar_position: 10
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": 1732, "ID": 1732,
"NAME": "New subfolder 2", "NAME": "New subfolder 2",

View File

@ -26,7 +26,7 @@ sidebar_position: 22
```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";
Result = OPI_Bitrix24.MarkFileAsDeleted(URL, FileID); Result = OPI_Bitrix24.MarkFileAsDeleted(URL, FileID);
@ -47,7 +47,7 @@ sidebar_position: 22
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "1716", "ID": "1716",
"NAME": "New file name.jpg", "NAME": "New file name.jpg",

View File

@ -26,7 +26,7 @@ sidebar_position: 16
```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";
Result = OPI_Bitrix24.MarkFolderAsDeleted(URL, FolderID); Result = OPI_Bitrix24.MarkFolderAsDeleted(URL, FolderID);
@ -47,7 +47,7 @@ sidebar_position: 16
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "936", "ID": "936",
"NAME": "New catalog", "NAME": "New catalog",

View File

@ -27,7 +27,7 @@ sidebar_position: 25
```bsl title="Code example" ```bsl title="Code example"
FolderID = "2492"; FolderID = "2492";
FileID = "2484"; FileID = "2484";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -54,7 +54,7 @@ sidebar_position: 25
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "1716", "ID": "1716",
"NAME": "New file name.jpg", "NAME": "New file name.jpg",

View File

@ -27,7 +27,7 @@ sidebar_position: 11
```bsl title="Code example" ```bsl title="Code example"
DestinationID = "2488"; DestinationID = "2488";
FolderID = "2494"; FolderID = "2494";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/"; URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
@ -54,7 +54,7 @@ sidebar_position: 11
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "938", "ID": "938",
"NAME": "New subfolder 2", "NAME": "New subfolder 2",

View File

@ -27,7 +27,7 @@ sidebar_position: 26
```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";
FileID2 = "2482"; FileID2 = "2482";
@ -52,7 +52,7 @@ sidebar_position: 26
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "1716", "ID": "1716",
"NAME": "New file name.jpg", "NAME": "New file name.jpg",

View File

@ -27,7 +27,7 @@ sidebar_position: 18
```bsl title="Code example" ```bsl title="Code example"
Name = "New catalog"; Name = "New catalog";
Filename2 = "New folder 2"; Filename2 = "New folder 2";
FolderID2 = "2488"; FolderID2 = "2488";
@ -52,7 +52,7 @@ sidebar_position: 18
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "936", "ID": "936",
"NAME": "New catalog", "NAME": "New catalog",

View File

@ -27,7 +27,7 @@ sidebar_position: 4
```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";
Token = "b9df7366006e9f06006b12e400000001000..."; Token = "b9df7366006e9f06006b12e400000001000...";
StorageID = "18"; StorageID = "18";
@ -44,7 +44,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "18", "ID": "18",
"NAME": "New storage name", "NAME": "New storage name",

View File

@ -26,7 +26,7 @@ sidebar_position: 23
```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";
Result = OPI_Bitrix24.RestoreFile(URL, FileID); Result = OPI_Bitrix24.RestoreFile(URL, FileID);
@ -47,7 +47,7 @@ sidebar_position: 23
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "1716", "ID": "1716",
"NAME": "New file name.jpg", "NAME": "New file name.jpg",

View File

@ -26,7 +26,7 @@ sidebar_position: 17
```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";
Result = OPI_Bitrix24.RestoreFolder(URL, FolderID); Result = OPI_Bitrix24.RestoreFolder(URL, FolderID);
@ -47,7 +47,7 @@ sidebar_position: 17
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": "936", "ID": "936",
"NAME": "New catalog", "NAME": "New catalog",

View File

@ -28,7 +28,7 @@ sidebar_position: 19
```bsl title="Code example" ```bsl title="Code example"
Filename2 = "Picture2.jpg"; Filename2 = "Picture2.jpg";
Name = "Picture1.jpg"; Name = "Picture1.jpg";
Image2 = "https://openintegrations.dev/test_data/picture.jpg"; // Local path, URL or Binary Data Image2 = "https://openintegrations.dev/test_data/picture.jpg"; // Local path, URL or Binary Data
@ -57,7 +57,7 @@ sidebar_position: 19
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": 1740, "ID": 1740,
"NAME": "Picture1.jpg", "NAME": "Picture1.jpg",

View File

@ -29,7 +29,7 @@ sidebar_position: 6
```bsl title="Code example" ```bsl title="Code example"
Filename2 = "Picture2.jpg"; Filename2 = "Picture2.jpg";
Name = "Picture1.jpg"; Name = "Picture1.jpg";
Image2 = "https://openintegrations.dev/test_data/picture.jpg"; // Local path, URL or Binary Data Image2 = "https://openintegrations.dev/test_data/picture.jpg"; // Local path, URL or Binary Data
@ -58,7 +58,7 @@ sidebar_position: 6
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"ID": 356, "ID": 356,
"NAME": "26417397-8431-4343-9c0f-a40d4a2831c8.jpg", "NAME": "26417397-8431-4343-9c0f-a40d4a2831c8.jpg",

View File

@ -26,7 +26,7 @@ sidebar_position: 17
```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";
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID); Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 17
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1718569733.98858, "start": 1718569733.98858,

View File

@ -26,7 +26,7 @@ sidebar_position: 7
```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";
Result = OPI_Bitrix24.ApproveTask(URL, TaskID); Result = OPI_Bitrix24.ApproveTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 7
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -27,7 +27,7 @@ sidebar_position: 6
```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";
FileID = "2480"; FileID = "2480";
@ -50,7 +50,7 @@ sidebar_position: 6
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"attachmentId": 598 "attachmentId": 598
}, },

View File

@ -27,7 +27,7 @@ sidebar_position: 20
```bsl title="Code example" ```bsl title="Code example"
ArrayOfUsers = New Array; ArrayOfUsers = New Array;
ArrayOfUsers.Add("1"); ArrayOfUsers.Add("1");
ArrayOfUsers.Add("10"); ArrayOfUsers.Add("10");
@ -53,7 +53,7 @@ sidebar_position: 20
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"allowedActions": { "allowedActions": {
"1": { "1": {

View File

@ -26,7 +26,7 @@ sidebar_position: 9
```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";
Result = OPI_Bitrix24.CompleteTask(URL, TaskID); Result = OPI_Bitrix24.CompleteTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 9
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -26,7 +26,7 @@ sidebar_position: 3
```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()
CurrentDate = OPI_Tools.GetCurrentDate(); CurrentDate = OPI_Tools.GetCurrentDate();
Hour = 3600; Hour = 3600;
@ -61,7 +61,7 @@ sidebar_position: 3
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -28,7 +28,7 @@ sidebar_position: 23
```bsl title="Code example" ```bsl title="Code example"
FromID = "500"; FromID = "500";
DestinationID = "502"; DestinationID = "502";
LinkType = 0; LinkType = 0;
@ -56,7 +56,7 @@ sidebar_position: 23
``` ```
```json title="Result" ```json title="Result"
{ {
"result": [], "result": [],
"time": { "time": {
"start": 1720186655.56394, "start": 1720186655.56394,

View File

@ -26,7 +26,7 @@ sidebar_position: 11
```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";
Result = OPI_Bitrix24.DeferTask(URL, TaskID); Result = OPI_Bitrix24.DeferTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 11
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -27,7 +27,7 @@ sidebar_position: 16
```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";
UserID = "10"; UserID = "10";
@ -50,7 +50,7 @@ sidebar_position: 16
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "154", "id": "154",

View File

@ -26,7 +26,7 @@ sidebar_position: 5
```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";
Result = OPI_Bitrix24.DeleteTask(URL, TaskID); Result = OPI_Bitrix24.DeleteTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 5
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": true "task": true
}, },

View File

@ -26,7 +26,7 @@ sidebar_position: 8
```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";
Result = OPI_Bitrix24.DisapproveTask(URL, TaskID); Result = OPI_Bitrix24.DisapproveTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 8
``` ```
```json title="Result" ```json title="Result"
{ {
"error": 1048582, "error": 1048582,
"error_description": "Action on the task is not allowed" "error_description": "Action on the task is not allowed"
} }

View File

@ -25,7 +25,7 @@ sidebar_position: 25
```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.GetTaskFieldsStructure(URL); Result = OPI_Bitrix24.GetTaskFieldsStructure(URL);
@ -45,7 +45,7 @@ sidebar_position: 25
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"fields": { "fields": {
"ID": { "ID": {

View File

@ -26,7 +26,7 @@ sidebar_position: 19
```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";
Result = OPI_Bitrix24.GetTaskHistory(URL, TaskID); Result = OPI_Bitrix24.GetTaskHistory(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 19
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"list": [ "list": [
{ {

View File

@ -26,7 +26,7 @@ sidebar_position: 1
```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";
Result = OPI_Bitrix24.GetTask(URL, TaskID); Result = OPI_Bitrix24.GetTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -27,7 +27,7 @@ sidebar_position: 2
```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;
Filter.Insert("CREATED_BY", 1); Filter.Insert("CREATED_BY", 1);
Filter.Insert("RESPONSIBLE_ID", 10); Filter.Insert("RESPONSIBLE_ID", 10);
@ -53,7 +53,7 @@ sidebar_position: 2
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"tasks": [ "tasks": [
{ {

View File

@ -26,7 +26,7 @@ sidebar_position: 21
```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";
Result = OPI_Bitrix24.MuteTask(URL, TaskID); Result = OPI_Bitrix24.MuteTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 21
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "290", "id": "290",

View File

@ -26,7 +26,7 @@ sidebar_position: 12
```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";
Result = OPI_Bitrix24.PauseTask(URL, TaskID); Result = OPI_Bitrix24.PauseTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 12
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -26,7 +26,7 @@ sidebar_position: 18
```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";
Result = OPI_Bitrix24.RemoveTaskFromFavorites(URL, TaskID); Result = OPI_Bitrix24.RemoveTaskFromFavorites(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 18
``` ```
```json title="Result" ```json title="Result"
{ {
"result": true, "result": true,
"time": { "time": {
"start": 1718569735.08926, "start": 1718569735.08926,

View File

@ -26,7 +26,7 @@ sidebar_position: 10
```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";
Result = OPI_Bitrix24.RenewTask(URL, TaskID); Result = OPI_Bitrix24.RenewTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 10
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -26,7 +26,7 @@ sidebar_position: 13
```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";
Result = OPI_Bitrix24.StartTask(URL, TaskID); Result = OPI_Bitrix24.StartTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 13
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -26,7 +26,7 @@ sidebar_position: 14
```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";
Result = OPI_Bitrix24.StartWatchingTask(URL, TaskID); Result = OPI_Bitrix24.StartWatchingTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 14
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -26,7 +26,7 @@ sidebar_position: 15
```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";
Result = OPI_Bitrix24.StopWatchingTask(URL, TaskID); Result = OPI_Bitrix24.StopWatchingTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 15
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -26,7 +26,7 @@ sidebar_position: 22
```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";
Result = OPI_Bitrix24.UnmuteTask(URL, TaskID); Result = OPI_Bitrix24.UnmuteTask(URL, TaskID);
@ -48,7 +48,7 @@ sidebar_position: 22
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "290", "id": "290",

View File

@ -27,7 +27,7 @@ sidebar_position: 4
```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()
TaskData = New Structure; TaskData = New Structure;
TaskData.Insert("TITLE", "Another task title"); TaskData.Insert("TITLE", "Another task title");
@ -56,7 +56,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"result": { "result": {
"task": { "task": {
"id": "110", "id": "110",

View File

@ -25,7 +25,7 @@ sidebar_position: 4
```bsl title="Code example" ```bsl title="Code example"
Token = "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L..."; Token = "sl.B2ieEHcB9I9BTwJFjbf_MQtoZMKjGYgkpBqzQkvBfuSz41Qpy5r3d7a4ax22I5ILWhd9KLbN5L...";
Result = OPI_Dropbox.GetAccountInformation(Token); Result = OPI_Dropbox.GetAccountInformation(Token);
``` ```
@ -39,7 +39,7 @@ sidebar_position: 4
``` ```
```json title="Result" ```json title="Result"
{ {
"account_id": "dbid:AAA4WKMCfgoW5LwuNQFeLOyp-X4omQiNDhE", "account_id": "dbid:AAA4WKMCfgoW5LwuNQFeLOyp-X4omQiNDhE",
"name": { "name": {
"given_name": "Anton", "given_name": "Anton",

View File

@ -24,7 +24,7 @@ sidebar_position: 1
```bsl title="Code example" ```bsl title="Code example"
AppKey = "oynqxds..."; AppKey = "oynqxds...";
Result = OPI_Dropbox.GetAuthorizationLink(AppKey); Result = OPI_Dropbox.GetAuthorizationLink(AppKey);
``` ```
@ -37,5 +37,5 @@ sidebar_position: 1
``` ```
```json title="Result" ```json title="Result"
"https://www.dropbox.com/oauth2/authorize?client_id=oynqxdsqft8oyky&response_type=code&token_access_type=offline" "https://www.dropbox.com/oauth2/authorize?client_id=oynqxdsqft8oyky&response_type=code&token_access_type=offline"
``` ```

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