You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[**leave_a_group_channel**](BotApi.md#leave_a_group_channel) | **DELETE** /v3/bots/{bot_userid}/channels/{channel_url} | Leave channels - When leaving a specific channel
10
11
[**leave_group_channels**](BotApi.md#leave_group_channels) | **DELETE** /v3/bots/{bot_userid}/channels | Leave channels - When leaving all channels
11
12
[**list_bots**](BotApi.md#list_bots) | **GET** /v3/bots | List bots
12
13
[**send_a_bot_message**](BotApi.md#send_a_bot_message) | **POST** /v3/bots/{bot_userid}/send | Send a bot's message
14
+
[**update_bot_by_id**](BotApi.md#update_bot_by_id) | **PUT** /v3/bots/{bot_userid} | Update a bot
15
+
[**view_bot_by_id**](BotApi.md#view_bot_by_id) | **GET** /v3/bots/{bot_userid} | View a bot
13
16
14
17
15
18
# **create_a_bot**
@@ -85,6 +88,83 @@ No authorization required
85
88
-**Accept**: application/json
86
89
87
90
91
+
### HTTP response details
92
+
93
+
| Status code | Description | Response headers |
94
+
|-------------|-------------|------------------|
95
+
**200** | Successful response | - |
96
+
97
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
## Delete a bot Deletes a bot from an application. https://sendbird.com/docs/chat/v3/platform-api/guides/bot-interface#2-delete-a-bot ----------------------------
105
+
106
+
### Example
107
+
108
+
109
+
```python
110
+
import time
111
+
import sendbird_platform_sdk
112
+
from sendbird_platform_sdk.api import bot_api
113
+
from pprint import pprint
114
+
# Defining the host is optional and defaults to https://api-APP_ID.sendbird.com
115
+
# See configuration.py for a list of all supported configuration parameters.
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
## Update a bot Updates information on a bot. https://sendbird.com/docs/chat/v3/platform-api/guides/bot-interface#2-update-a-bot ----------------------------
633
+
634
+
### Example
635
+
636
+
637
+
```python
638
+
import time
639
+
import sendbird_platform_sdk
640
+
from sendbird_platform_sdk.api import bot_api
641
+
from sendbird_platform_sdk.model.update_bot_by_id_data import UpdateBotByIdData
642
+
from sendbird_platform_sdk.model.update_bot_by_id_response import UpdateBotByIdResponse
643
+
from pprint import pprint
644
+
# Defining the host is optional and defaults to https://api-APP_ID.sendbird.com
645
+
# See configuration.py for a list of all supported configuration parameters.
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
716
+
717
+
# **view_bot_by_id**
718
+
> ViewBotByIdResponse view_bot_by_id(bot_userid)
719
+
720
+
View a bot
721
+
722
+
## View a bot Retrieves information on a bot. https://sendbird.com/docs/chat/v3/platform-api/guides/bot-interface#2-view-a-bot ----------------------------
723
+
724
+
### Example
725
+
726
+
727
+
```python
728
+
import time
729
+
import sendbird_platform_sdk
730
+
from sendbird_platform_sdk.api import bot_api
731
+
from sendbird_platform_sdk.model.view_bot_by_id_response import ViewBotByIdResponse
732
+
from pprint import pprint
733
+
# Defining the host is optional and defaults to https://api-APP_ID.sendbird.com
734
+
# See configuration.py for a list of all supported configuration parameters.
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
14
14
15
15
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
14
14
15
15
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments