1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-07 07:10:01 +02:00
Vitaly the Alpaca (bot) 5cc51552f4 Main build (Jenkins)
2024-11-21 22:39:27 +03:00

62 lines
1.3 KiB
Plaintext

---
sidebar_position: 21
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Get chats structure
Get chat fields structure
`Function GetChatStructure(Val Clear = False) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Clear | --empty | Boolean | ✖ | True > structure with empty values, False > field types at values |
Returns: Structure of KeyAndValue - Fields structure
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Result = OPI_Bitrix24.GetChatStructure();
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 GetChatStructure \
--empty false
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 GetChatStructure ^
--empty false
```
</TabItem>
</Tabs>
```json title="Result"
{
"TYPE": "<Chat type OPEN (Public) | CHAT (Private)>",
"TITLE": "<Chat title>",
"DESCRIPTION": "<Chat description>",
"COLOR": "<Chat color: RED, GREEN, MINT, LIGHT_BLUE, DARK_BLUE, PURPLE, AQUA, ...>",
"MESSAGE": "<First chat message>",
"USERS": "<Chat members array>",
"AVATAR": "<Base64 chat picture>",
"OWNER_ID": "<ID of chat owner. Current user by default>"
}
```