get_prohibited_member_list

This commit is contained in:
白池 2023-11-22 23:04:26 +08:00 committed by GitHub
parent e286c39005
commit 1bd6aeea9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -330,3 +330,33 @@ data 的响应内容为 json 数组,每个元素内容如下:
### 响应
该接口将返回处理结果,其中 `data` 字段无数据。。
## 获取被禁言的群成员列表
用于获取群聊谁谁谁啊犯贱或者被二比滥权管理或者某群主时援交手滑禁言掉的人的列表。
### API端点
`/get_prohibited_member_list`
### 参数
| 字段 | 类型 | 必须 | 说明 |
| -------- | ----- | ---- | ----- |
| group_id | int64 | 是 | 群号 |
### 响应
```json
{
"status": "ok",
"retcode": 0,
"data": [
{
"user_id": 2262206340, // 被禁言的人
"time": 1700749967 // 禁言结束时间
}
],
"echo": "xxxx"
}
```