Navigation
API > API/Plugins > API/Plugins/OnlineSubsystem > API/Plugins/OnlineSubsystem/IOnlineGroups
Description
Get the list of users banned from this group. When the OnCompleted callback fires, if it succeeded you can use GetCachedGroupDenylist to retrieve the information.
| Name | QueryGroupDenylist |
| Type | function |
| Header File | /Engine/Plugins/Online/OnlineSubsystem/Source/Public/Interfaces/OnlineGroupsInterface.h |
| Include Path | #include "Interfaces/OnlineGroupsInterface.h" |
void QueryGroupDenylist
(
const FUniqueNetId & ContextUserId,
const FUniqueNetId & GroupId,
const FOnGroupsRequestCompleted & OnCompleted
)
Parameters
| Name | Remarks |
|---|---|
| ContextUserId | The ID of the user whose credentials are being used to make this call |
| GroupId | The group's globally unique ID |
| OnCompleted | This callback is invoked after contacting the server. It is guaranteed to occur (regardless of success/fail) and will not be called before this function returns. |