用戶標籤
本教學將說明如何透過 API 來操作 BotBonnie 平台的標籤,包含建立 / 刪除標籤和標籤資料夾,以及如何將標籤貼到用戶身上等。
建立新標籤
在您的伺服器呼叫 BotBonnie 建立標籤的 API:
Request headers
Name | Description |
Content-Type | application/json |
Authorization | Bearer |
Request body
Name | Type | Description | Required |
botId | String | 機器人 ID | o |
name | String | 標籤名稱 | o |
type | Number | 標籤類型
| o |
parentId | Number | 標籤資料夾 ID |
API 回覆
新增成功
錯誤
取得標籤內容
在您的伺服器呼叫 BotBonnie 取得標籤的 API:
Query path parameters
Name | Description |
tagId | 欲查詢的標籤或是標籤資料夾 ID |
Request headers
Name | Description |
Content-Type | application/json |
Authorization | Bearer |
API 回覆
回應範例
刪除標籤
在您的伺服器呼叫 BotBonnie 刪除標籤的 API,刪除標籤時,也會同時拔除所有用戶身上的該標籤紀錄。當刪除的標籤為資料夾,會將其資料夾下的標籤與子資料夾一併刪除。
Query path parameters
Name | Description |
tagId | 欲刪除的標籤或是標籤資料夾 ID |
Request headers
Name | Description |
Content-Type | application/json |
Authorization | Bearer |
API 回覆
回應範例
貼標籤到用戶身上
在您的伺服器呼叫 BotBonnie 用戶標籤 API:
Request headers
Name | Description |
Content-Type | application/json |
Authorization | Bearer |
Request body
Name | Type | Description | Required |
bot_tag_id | String | 標籤 ID | o |
bot_uid | String | 用戶 ID (加密) | 與 bot_raw_uid 擇一 |
bot_raw_uid | String | 用戶 ID (未加密) | 與 bot_uid 擇一 |
bot_pid | String | 粉絲頁 ID | o |
bot_channel | Number | 渠道代號
| o |
移除用戶身上的標籤
在您的伺服器呼叫 BotBonnie 用戶標籤 API:
Request headers
Name | Description |
Content-Type | application/json |
Authorization | Bearer |
Request body
Name | Type | Description | Required |
bot_tag_id | String | 標籤 ID | o |
bot_uid | String | 用戶 ID (加密) | 與 bot_raw_uid 擇一 |
bot_raw_uid | String | 用戶 ID (未加密) | 與 bot_uid 擇一 |
bot_pid | String | 粉絲頁 ID | o |
bot_channel | Number | 渠道代號
| o |
API 回覆
新增 / 刪除成功
錯誤
查詢用戶身上的標籤
在您的伺服器呼叫 BotBonnie 用戶標籤 API:
Request headers
Name | Description |
Content-Type | application/json |
Authorization | Bearer |
Request Body
Name | Type | Description | Required |
bot_uid | String | 用戶 ID (加密) | 與 bot_raw_uid 擇一 |
bot_raw_uid | String | 用戶 ID (未加密) | 與 bot_uid 擇一 |
bot_pid | String | 粉絲頁 ID | o |
bot_channel | Number | 渠道代號
| o |
API 回覆
回應範例
Last updated