Skip to content

removeGroupBlockedMember

api.memberId(memberId, groupId)

Parameters

  • memberId string | string[]
  • groupId string

Return

Promise<RemoveGroupBlockedMemberResponse>

Types

ts
export type RemoveGroupBlockedMemberResponse = "";

Examples

ts
const memberId = "000000000000000000";
const groupId = "000000000000000001";

api.removeGroupBlockedMember(memberId, groupId)
    .then(console.log)
    .catch(console.error);