mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
717 B
717 B
sidebar_position |
---|
2 |
Close dialog
Closes an existing dialog
Function CloseDialog(Val Token, Val Dialog) Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Bot token |
Dialog | --conv | String | Dialog ID |
Returns: Key-Value Pair - 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
}