You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-12-21 23:57:40 +02:00
791 B
791 B
sidebar_position
| 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
Dialog = "D06UAKK1C6R";
Response = OPI_Slack.CloseDialog(Token, Dialog); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
oint slack CloseDialog --token %token% --conv "D06UAKK1C6R"
{
"ok": true,
"already_closed": false,
"no_op": false
}