removeGroupDeputy
Xóa phó nhóm
api.removeGroupDeputy(memberId, groupId)
Parameters
memberId
string
|string[]
groupId
string
Return
Promise<RemoveGroupDeputyResponse>
Examples
const groupId = "0000000000000000000";
const memberId = "0000000000000000001";
api.removeGroupDeputy(memberId, groupId)
.then(console.log)
.catch(console.error);
Last updated