removeGroupBlockedMember
Xóa thành viên bị chặn trong nhóm
api.memberId(memberId, groupId)
Parameters
memberId
string
|string[]
groupId
string
Return
Promise<RemoveGroupBlockedMemberResponse>
Types
export type RemoveGroupBlockedMemberResponse = "";
Examples
const memberId = "000000000000000000";
const groupId = "000000000000000001";
api.removeGroupBlockedMember(memberId, groupId)
.then(console.log)
.catch(console.error);
Last updated