1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-04 23:37:46 +02:00
2024-10-15 09:53:37 +03:00

45 lines
731 B
Markdown

---
sidebar_position: 1
---
# Open dialog
Opens a new dialog with one or more users
`Function OpenDialog(Val Token, Val ArrayOfUsers) Export`
| Parameter | CLI option | Type | 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="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"
}
}
```