> ## 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.

# PFProfilesGetEntityProfilesRequest

> PFProfilesGetEntityProfilesRequest 数据模型。给定一组实体类型和实体标识符，将检索调用方可读取的所有配置文件属性。

PFProfilesGetEntityProfilesRequest 数据模型。给定一组实体类型和实体标识符，将检索调用方可读取的所有配置文件属性。调用方无权读取的配置文件将不会包含在结果中，且不会报错。

## 语法

```cpp theme={null}
typedef struct PFProfilesGetEntityProfilesRequest {  
    PFStringDictionaryEntry const* customTags;  
    uint32_t customTagsCount;  
    bool const* dataAsObject;  
    PFEntityKey const* entities;  
    uint32_t entitiesCount;  
} PFProfilesGetEntityProfilesRequest;  
```

### 成员

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

（可选）与请求关联的可选自定义标签（例如生成号、外部跟踪标识符等）。

**`customTagsCount`**   uint32\_t

customTags 的计数

**`dataAsObject`**   bool const\*<br />*may be nullptr*

（可选）确定对象是作为转义的 JSON 字符串返回，还是作为未转义的 JSON 对象返回。默认为 JSON 字符串。

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

要加载的配置文件的实体键。必须介于 1 和 25 之间。

**`entitiesCount`**   uint32\_t

entities 的计数

## 要求

**头文件：** PFProfilesTypes.h

## 另请参阅

[PFProfilesTypes 成员](/services/playfab/api-references/c/pfprofilestypes/pfprofilestypes_members)


## Related topics

- [PFProfilesGetProfilesAsync](/zh-CN/services/playfab/api-references/c/pfprofiles/functions/pfprofilesgetprofilesasync.md)
- [Services C API overview - PFProfilesTypes.h](/zh-CN/services/playfab/api-references/c/pfprofilestypes/pfprofilestypes_members.md)
- [PFProfilesGetEntityProfileRequest](/zh-CN/services/playfab/api-references/c/pfprofilestypes/structs/pfprofilesgetentityprofilerequest.md)
- [PFProfilesSetEntityProfilePolicyRequest](/zh-CN/services/playfab/api-references/c/pfprofilestypes/structs/pfprofilessetentityprofilepolicyrequest.md)
- [PFProfilesGetEntityProfileResponse](/zh-CN/services/playfab/api-references/c/pfprofilestypes/structs/pfprofilesgetentityprofileresponse.md)
