Block / Unblock

1. View Blocked Users

The list is paginated, so to get to the next page, you can pass the last TPUser from the previous list to get to the next page.

await TalkPlusAPI.getBlockedUsers(lastUser, (blockedUsers, hasNext) {

}, errorCallback: (errorCode, errorMessage){

});

2. Block / Unblock Users

You can block or unblock users.

// block
await TalkPlusAPI.blockUser(
    targetId, 
    errorCallback: (errorCode, errorMessage){}
);

// unblock
await TalkPlusAPI.unblockUser(
    targetId, 
    errorCallback: (errorCode, errorMessage){}
);

Please refer to the following limitations:

Whether I can add someone whom I’ve blocked to a channel that I own

X

Whether someone whom I’ve blocked can join a channel that I own

X

Whether someone whom I’ve blocked can be added as a member to a channel that I am a member of

O

Whether someone whom I’ve blocked can join a channel that I am a member of

O

Whether I can be added as a member to a channel that is owned by someone I’ve blocked

X

Whether I can join a channel that is owned by someone I’ve blocked

X

Whether I can be added as a member to a channel where someone I’ve blocked is a member of

O

Whether I can join a channel where someone I’ve blocked is a member of

O

Last updated