查询消息已读信息
GET
https://open.feishu.cn/open-apis/im/v1/messages/{message_id}/read_users
注意事项:
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 230001 | Your request contains an invalid request parameter. | 参数错误,请根据接口返回的错误信息并参考文档检查输入参数。 |
400 | 230002 | The bot can not be outside the group. | 机器人不在对应群组中。 |
400 | 230006 | Bot ability is not activated. | 机器人能力未启用 。在开发者后台-应用功能-机器人页面开启机器人功能并发布上线。 |
400 | 230012 | Bot is NOT the sender of the message. | 机器人不是消息的发送者。 |
400 | 230027 | Lack of necessary permissions. | 请根据本文档中的权限要求部分补充所需权限。 |
400 | 230033 | Get the reading status must be done within 7 days after the message is sent. | 查询消息读取情况只能在发送消息后的7天内。 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/im/v1/messages//read_users?user_id_type' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"items": [
{
"user_id_type": "open_id",
"user_id": "ou_9b851f7b51a9d58d109982337c46f3de",
"timestamp": "1609484183000",
"tenant_key": "736588c9260f175e"
}
],
"has_more": true,
"page_token": "GxmvlNRvP0NdQZpa7yIqf_Lv_QuBwTQ8tXkX7w-irAghVD_TvuYd1aoJ1LQph86O-XImC4X9j9FhUPhXQDvtrQ=="
}
}
请求参数
Path 参数
message_id
string
必需
Query 参数
user_id_type
string
必需
page_size
string
可选
page_token
string
可选
Header 参数
Authorization
string
必需
默认值:
Bearer {{access_token}}
Content-Type
string
必需
默认值:
application/json; charset=utf-8
返回响应
修改于 2023-01-12 08:44:05