1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-10 04:18:47 +02:00
OpenIntegrations/docs/en/md/Slack/Management-and-settings/Get-bot-information.md

49 lines
870 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 | Description |
|-|-|-|-|
| Token | --token | String | Bot token |
2024-10-09 08:42:00 +02:00
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-09-29 11:34:39 +02:00
Token = "xoxb-6965308400114-696804637...";
Result = OPI_Slack.GetBotInformation(Token);
```
```sh title="CLI command example"
oint slack GetBotInformation --token %token%
```
```json title="Result"
2024-08-14 08:06:31 +02:00
{
2024-10-06 15:55:08 +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
}
```