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

# PFGetPlayerCombinedInfoRequestParams

> PFGetPlayerCombinedInfoRequestParams data model.

PFGetPlayerCombinedInfoRequestParams data model.

## Syntax

```cpp theme={null}
typedef struct PFGetPlayerCombinedInfoRequestParams {  
    bool getCharacterInventories;  
    bool getCharacterList;  
    bool getPlayerProfile;  
    bool getPlayerStatistics;  
    bool getTitleData;  
    bool getUserAccountInfo;  
    bool getUserData;  
    bool getUserInventory;  
    bool getUserReadOnlyData;  
    bool getUserVirtualCurrency;  
    const char* const* playerStatisticNames;  
    uint32_t playerStatisticNamesCount;  
    PFPlayerProfileViewConstraints const* profileConstraints;  
    const char* const* titleDataKeys;  
    uint32_t titleDataKeysCount;  
    const char* const* userDataKeys;  
    uint32_t userDataKeysCount;  
    const char* const* userReadOnlyDataKeys;  
    uint32_t userReadOnlyDataKeysCount;  
} PFGetPlayerCombinedInfoRequestParams;  
```

### Members

**`getCharacterInventories`**   bool

Whether to get character inventories. Defaults to false.

**`getCharacterList`**   bool

Whether to get the list of characters. Defaults to false.

**`getPlayerProfile`**   bool

Whether to get player profile. Defaults to false. Has no effect for a new player.

**`getPlayerStatistics`**   bool

Whether to get player statistics. Defaults to false.

**`getTitleData`**   bool

Whether to get title data. Defaults to false.

**`getUserAccountInfo`**   bool

Whether to get the player's account Info. Defaults to false.

**`getUserData`**   bool

Whether to get the player's custom data. Defaults to false.

**`getUserInventory`**   bool

Whether to get the player's inventory. Defaults to false.

**`getUserReadOnlyData`**   bool

Whether to get the player's read only data. Defaults to false.

**`getUserVirtualCurrency`**   bool

Whether to get the player's virtual currency balances. Defaults to false.

**`playerStatisticNames`**   const char\* const\*\
*may be nullptr*

(Optional) Specific statistics to retrieve. Leave null to get all keys. Has no effect if GetPlayerStatistics is false.

**`playerStatisticNamesCount`**   uint32\_t

Count of playerStatisticNames

**`profileConstraints`**   [PFPlayerProfileViewConstraints](/services/playfab/api-references/c/pftypes/structs/pfplayerprofileviewconstraints) const\*\
*may be nullptr*

(Optional) Specifies the properties to return from the player profile. Defaults to returning the player's display name.

**`titleDataKeys`**   const char\* const\*\
*may be nullptr*

(Optional) Specific keys to search for in the custom data. Leave null to get all keys. Has no effect if GetTitleData is false.

**`titleDataKeysCount`**   uint32\_t

Count of titleDataKeys

**`userDataKeys`**   const char\* const\*\
*may be nullptr*

(Optional) Specific keys to search for in the custom data. Leave null to get all keys. Has no effect if GetUserData is false.

**`userDataKeysCount`**   uint32\_t

Count of userDataKeys

**`userReadOnlyDataKeys`**   const char\* const\*\
*may be nullptr*

(Optional) Specific keys to search for in the custom data. Leave null to get all keys. Has no effect if GetUserReadOnlyData is false.

**`userReadOnlyDataKeysCount`**   uint32\_t

Count of userReadOnlyDataKeys

## Requirements

**Header:** PFTypes.h

## See also

[PFTypes members](/services/playfab/api-references/c/pftypes/pftypes_members)


## Related topics

- [PFAccountManagementGetPlayerCombinedInfoRequest](/services/playfab/api-references/c/pfaccountmanagementtypes/structs/pfaccountmanagementgetplayercombinedinforequest.md)
- [PFAuthenticationLoginWithSteamIdRequest](/services/playfab/api-references/c/pfauthenticationtypes/structs/pfauthenticationloginwithsteamidrequest.md)
- [PFAuthenticationLoginWithCustomIDRequest](/services/playfab/api-references/c/pfauthenticationtypes/structs/pfauthenticationloginwithcustomidrequest.md)
- [PFAuthenticationLoginWithServerCustomIdRequest](/services/playfab/api-references/c/pfauthenticationtypes/structs/pfauthenticationloginwithservercustomidrequest.md)
- [PFAuthenticationLoginWithXboxRequest](/services/playfab/api-references/c/pfauthenticationtypes/structs/pfauthenticationloginwithxboxrequest.md)
