1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-02 23:27:50 +02:00
2024-08-14 09:06:31 +03:00

48 lines
791 B
Markdown

---
sidebar_position: 2
---
# Close dialog
Closes an existing dialog
`Function CloseDialog(Val Token, Val Dialog) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Bot token |
| Dialog | --conv | String | Dialog ID |
Returns: Map Of KeyAndValue - Serialized JSON response from Slack
<br/>
```bsl title="Code example"
Dialog = "D06UAKK1C6R";
Response = OPI_Slack.CloseDialog(Token, Dialog); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint slack CloseDialog --token %token% --conv "D06UAKK1C6R"
```
```json title="Result"
{
"ok": true,
"already_closed": false,
"no_op": false
}
```