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