SDKsAndroidEnterprise
Get members who read a group message
Retrieve members who have or have not read a group message using pagination.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
conversationID | String | Yes | ID of the group conversation. |
clientMsgID | String | Yes | ID of the message whose reader list to query. |
filter | int | Yes | Pass 0 for members who have read the message or 1 for members who have not read it. |
offset | int | Yes | Pagination offset. Pass 0 for the first page. |
count | int | Yes | Maximum number of members to retrieve. |
messageManager.getGroupMessageReaderList(
conversationID,
clientMsgID,
0,
0,
50,
new OnBase<List<GroupMembersInfo>>() {
@Override
public void onSuccess(List<GroupMembersInfo> members) {
// members contains the profiles of members who read the message.
}
@Override
public void onError(int code, String error) {
// Handle the failure
}
}
);The success callback returns the current page of GroupMembersInfo objects. For field descriptions, see List group members. Continue paging when the complete list is required.
Was this page helpful?