mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
827 B
827 B
sidebar_position |
---|
1 |
Get bot information
Gets basic information about the bot
Function GetBotInformation(Val Token) Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Token | --token | String | Bot token |
Returns: Key-Value Pair - Serialized JSON response from Slack
Response = OPI_Slack.GetBotInformation(Token); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
oint slack GetBotInformation --token %token%
{
"ok": true,
"url": "https://openintegrationsgroup.slack.com/",
"team": "OpenIntegrations",
"user": "openintegrations",
"team_id": "T06UD92BS3C",
"user_id": "U06UG1CAYH2",
"bot_id": "B06TZ0MJV5M",
"is_enterprise_install": false
}