1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-26 05:37:27 +02:00
Vitaly the Alpaca (bot) bec1c1661a Main build (Jenkins)
2024-10-15 21:15:56 +03:00

48 lines
817 B
Plaintext

---
sidebar_position: 1
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Open dialog
Opens a new dialog with one or more users
`Function OpenDialog(Val Token, Val ArrayOfUsers) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Bot token |
| ArrayOfUsers | --users | Array of String | ✔ | User ID Array |
Returns: Map Of KeyAndValue - serialized JSON response from Slack
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "xoxb-6965308400114-696804637...";
User = "U06UABH3APP";
Result = OPI_Slack.OpenDialog(Token, User);
```
```json title="Result"
{
"ok": true,
"no_op": false,
"already_open": false,
"channel": {
"id": "D06UAKK1C6R"
}
}
```