doc和url的会话标签页| HTTP状态码 | 错误码 | 描述 | 排查建议 |
|---|---|---|---|
| 400 | 232001 | Your request contains an invalid request parameter. | 参数错误,参考本文档检查输入参数。 |
| 400 | 232006 | Your request specifies a chat_id which is invalid. | 无效的 chat_id,请检查chat_id是否正确。 |
| 400 | 232010 | Operator and chat can NOT be in different tenants. | 操作者和被操作的群组应该在同一租户下。 |
| 400 | 232011 | Operator can NOT be out of the chat. | 操作者需要在群组中。 |
| 400 | 232025 | Bot ability is not activated. | 应用需要开启机器人能力。 |
| 400 | 232033 | The operator or invited bots does NOT have the authority to manage external chats without the scope. | 没有权限操作外部群。 |
| 400 | 232034 | The app is unavailable or inactivated by the tenant. | 应用在本租户下未安装或未启用。 |
| 400 | 232049 | Update or Delete operations only support doc or url tab type. | 更新或者删除操作仅支持doc或者url类型的会话标签页。 |
| 400 | 232050 | Operate chat tab unsupported chat type. | 请求的群类型不支持会话标签页。 |
| 400 | 232055 | The operator does not have chat tab manage permission. | 没有会话标签页的管理权限,请检查群设置中“谁可以管理标签页”是否开启了“仅群主和管理员”。 |
curl --location --request DELETE '/im/v1/chats//chat_tabs/delete_tabs' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"tab_ids":[
"7103743293443276819"
]
}'{
"code": 0,
"msg": "ok",
"data": {
"chat_tabs": [
{
"tab_id": "7101214603622940633",
"tab_type": "message"
},
{
"tab_id": "7101214603622940671",
"tab_name": "文档",
"tab_type": "doc",
"tab_content": {
"doc": "https://bytedance.feishu.cn/wiki/wikcnPIcqWjJQwkwDzrB9t40123xz"
}
}
]
}
}