1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-23 02:06:12 +02:00
OpenIntegrations/docs/en/md/Slack/Management-and-settings/Get-bot-information.md

51 lines
883 B
Markdown
Raw Normal View History

---
sidebar_position: 1
---
# Get bot information
Gets basic information about the bot
2024-07-10 12:58:29 +02:00
`Function GetBotInformation(Val Token) Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| Token | --token | String | Bot token |
Returns: Map Of KeyAndValue - Serialized JSON response from Slack
2024-07-10 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
2024-07-10 13:24:11 +02:00
Response = OPI_Slack.GetBotInformation(Token); //Map
Response = OPI_Tools.JSONString(Response); //JSON string
```
```sh title="CLI command example"
oint slack GetBotInformation --token %token%
```
```json title="Result"
2024-07-10 13:11:17 +02:00
{
"ok": true,
"url": "https://openintegrationsgroup.slack.com/",
"team": "OpenIntegrations",
"user": "openintegrations",
"team_id": "T06UD92BS3C",
"user_id": "U06UG1CAYH2",
"bot_id": "B06TZ0MJV5M",
"is_enterprise_install": false
}
```