Skip to main content

Overview

Queries the users subscribed to an Official Account.

Request

Authentication: Add authentication headers to the request. See Authentication.

Method GET

Rate limit 100 requests/second

Endpoint https://API domain/apigateway/publicchannel/members/list

Content-Type application/json

Request Parameters

ParameterData TypeRequiredDescription
channel_idstringYesOfficial Account ID. Maximum length: 32 characters.
limitintNoNumber of records to return.
offsetstringNoPagination offset.

Request Example

GET /apigateway/publicchannel/members/list?channel_id=xxx&limit=50&offset=xxx HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json

Response Example

{
"code":0,
"msg":"success",
"data":{
"members":[
{
"member_id":"userid1",
"created_time":17312345678
}
],
"offset":"xxxx"
}
}