2024-07-14 17:23:26 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Create chat
|
|
|
|
Creates a new chat based on the field structure
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function CreateChat(Val URL, Val ChatStructure, Val Token = "") Export`
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
2024-07-15 21:16:10 +02:00
|
|
|
| ChatStructure | --fields | Structure of KeyAndValue | Chat fields structure. See GetChatStructure |
|
|
|
|
| Token | --token | String | Access token, when app auth method used |
|
2024-07-14 17:23:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
:::tip
|
|
|
|
Method at API documentation: [im.chat.add](https://dev.1c-bitrix.ru/learning/course/?COURSE_ID=93&LESSON_ID=12093)
|
|
|
|
:::
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
2024-07-14 18:04:01 +02:00
|
|
|
Image = "https://openintegrations.dev/test_data/picture.jpg";
|
2024-07-14 17:23:26 +02:00
|
|
|
OPI_TypeConversion.GetBinaryData(Image);
|
|
|
|
|
|
|
|
B64Image = GetBase64StringFromBinaryData(Image);
|
|
|
|
|
|
|
|
MembersArray = New Array;
|
|
|
|
MembersArray.Add(10);
|
|
|
|
MembersArray.Add(1);
|
|
|
|
|
|
|
|
ChatStructure = New Structure;
|
|
|
|
ChatStructure.Insert("TYPE", "OPEN");
|
|
|
|
ChatStructure.Insert("TITLE", "New chat");
|
|
|
|
ChatStructure.Insert("DESCRIPTION", "This is a new chat");
|
|
|
|
ChatStructure.Insert("COLOR", "GREEN");
|
|
|
|
ChatStructure.Insert("MESSAGE", "Welcome to new chat");
|
|
|
|
ChatStructure.Insert("USERS", MembersArray);
|
|
|
|
ChatStructure.Insert("AVATAR", B64Image);
|
|
|
|
ChatStructure.Insert("OWNER_ID", 1);
|
|
|
|
|
2024-08-12 18:30:17 +02:00
|
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2ppp8uucc891111/";
|
2024-07-14 17:23:26 +02:00
|
|
|
|
|
|
|
Result = OPI_Bitrix24.CreateChat(URL, ChatStructure);
|
|
|
|
|
2024-07-14 18:04:01 +02:00
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
2024-08-09 16:15:52 +02:00
|
|
|
Token = "fe3fa966006e9f06006b12e400000001000...";
|
2024-07-14 17:23:26 +02:00
|
|
|
|
|
|
|
ChatStructure = New Structure;
|
|
|
|
ChatStructure.Insert("TYPE", "CHAT");
|
|
|
|
ChatStructure.Insert("TITLE", "Private chat");
|
|
|
|
ChatStructure.Insert("USERS", MembersArray);
|
|
|
|
|
|
|
|
Result = OPI_Bitrix24.CreateChat(URL, ChatStructure, Token);
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint bitrix24 CreateChat --url %url% --fields %fields% --token %token%
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
{
|
|
|
|
"result": 26,
|
|
|
|
"time": {
|
|
|
|
"start": 1720816597.42171,
|
|
|
|
"finish": 1720816597.52933,
|
|
|
|
"duration": 0.107618093490601,
|
|
|
|
"processing": 0.081672191619873,
|
|
|
|
"date_start": "2024-07-12T20:36:37+00:00",
|
|
|
|
"date_finish": "2024-07-12T20:36:37+00:00",
|
|
|
|
"operating_reset_at": 1720817197,
|
|
|
|
"operating": 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|