Skip to main content

功能说明

查询禁发单聊消息用户列表

请求说明

请求鉴权:接口需要增加验证 Header,请查看 鉴权说明

请求类型GET

请求限频100次/秒

请求地址:https://请求域名/apigateway/private/globalmutemembers/query

Content-Typeapplication/json

请求参数

参数数据类型是否必填参数说明
offsetstring用于分页查询的偏移量,每次查询列表时会返回下次的offset,初次可传空
limitint查询数量,默认100,最大1000

请求示例

POST /apigateway/private/globalmutemembers/query?offset=xx&limit=100 HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json

响应示例

{
"code":0,
"msg":"sucess",
"data":{
"items":[
{
"user_id":"xxx",
"created_time":172987634564
}
],
"offset":"xxxx"
}
}