> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFGroupsIsMemberRequest

> PFGroupsIsMemberRequest データ モデル。エンティティがグループのメンバーまたはグループ内のロールのメンバーであるかを確認します。エンティティがメンバーであることを示す結果が返されます。

PFGroupsIsMemberRequest データ モデル。エンティティがグループのメンバーまたはグループ内のロールのメンバーであるかを確認します。エンティティがグループのメンバーであるかどうかを示す結果、または呼び出し元がグループのメンバー一覧を読み取る権限を持っていない場合はアクセス許可エラーが返されます。

## 構文

```cpp theme={null}
typedef struct PFGroupsIsMemberRequest {  
    PFStringDictionaryEntry const* customTags;  
    uint32_t customTagsCount;  
    PFEntityKey const* entity;  
    PFEntityKey const* group;  
    const char* roleId;  
} PFGroupsIsMemberRequest;  
```

### メンバー

**`customTags`**   [PFStringDictionaryEntry](/services/playfab/api-references/c/pftypes/structs/pfstringdictionaryentry) const\*<br />*may be nullptr*

(省略可能) リクエストに関連付けられている省略可能なカスタム タグ (ビルド番号、外部トレース識別子など)。

**`customTagsCount`**   uint32\_t

customTags の数

**`entity`**   [PFEntityKey](/services/playfab/api-references/c/pftypes/structs/pfentitykey-c) const\*

このアクションの実行対象となるエンティティ。

**`group`**   [PFEntityKey](/services/playfab/api-references/c/pftypes/structs/pfentitykey-c) const\*

グループの識別子。

**`roleId`**   const char\*<br />*is null-terminated*

(省略可能) 省略可能: メンバーシップを確認するロールの ID。指定されていない場合、既定では任意のロール (つまり、エンティティが何らかの形でグループのメンバーであるかどうか) を確認します。

## 要件

**ヘッダー:** PFGroupsTypes.h

## 関連項目

[PFGroupsTypes のメンバー](/services/playfab/api-references/c/pfgroupstypes/pfgroupstypes_members)


## Related topics

- [PFGroupsIsMemberAsync](/ja-jp/services/playfab/api-references/c/pfgroups/functions/pfgroupsismemberasync.md)
- [Services C API overview - PFGroupsTypes.h](/ja-jp/services/playfab/api-references/c/pfgroupstypes/pfgroupstypes_members.md)
- [PFGroupsListGroupMembersRequest](/ja-jp/services/playfab/api-references/c/pfgroupstypes/structs/pfgroupslistgroupmembersrequest.md)
- [PFGroupsRemoveMembersRequest](/ja-jp/services/playfab/api-references/c/pfgroupstypes/structs/pfgroupsremovemembersrequest.md)
- [PFGroupsAddMembersRequest](/ja-jp/services/playfab/api-references/c/pfgroupstypes/structs/pfgroupsaddmembersrequest.md)
