API Overview
Message Callbacks
Status Codes
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
| Parameter | Data Type | Required | Description | |
|---|---|---|---|---|
| channel_id | string | Yes | Official Account ID. Maximum length: 32 characters. | |
| limit | int | No | Number of records to return. | |
| offset | string | No | Pagination 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"
}
}