2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 1
|
|
|
|
---
|
|
|
|
|
|
|
|
# Get bot information
|
|
|
|
Gets basic information about the bot
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function GetBotInformation(Val Token) Export`
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Bot token |
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-10-09 08:42:00 +02:00
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Slack
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
```bsl title="Code example"
|
2024-09-29 11:34:39 +02:00
|
|
|
Token = "xoxb-6965308400114-696804637...";
|
|
|
|
Result = OPI_Slack.GetBotInformation(Token);
|
2024-06-05 12:19:46 +02:00
|
|
|
```
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
oint slack GetBotInformation --token %token%
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```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
|
|
|
|
}
|
2024-06-05 12:19:46 +02:00
|
|
|
```
|