1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-07-07 01:09:03 +02:00
Files
OpenIntegrations/docs/en/md/Slack/Dialog-management/Close-dialog.md

50 lines
778 B
Markdown
Raw Normal View History

---
sidebar_position: 2
---
# Close dialog
Closes an existing dialog
<br/>
2024-07-10 13:58:29 +03:00
`Function CloseDialog(Val Token, Val Dialog) Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Bot token |
| Dialog | --conv | String | Dialog ID |
Returns: Map Of KeyAndValue - Serialized JSON response from Slack
2024-07-10 13:58:29 +03:00
```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
}
```