Player Data Management - Get User Data

Retrieves the title-specific custom data for the user which is readable and writable by the client

POST https://titleId.playfabapi.com/Admin/GetUserData

Request Header

Name Required Type Description
X-SecretKey True

string

This API requires a title secret key, available to title admins, from PlayFab Game Manager.

Request Body

Name Required Type Description
PlayFabId True

string

Unique PlayFab assigned ID of the user on whom the operation will be performed.

IfChangedFromDataVersion

number

The version that currently exists according to the caller. The call will return the data for all of the keys if the version in the system is greater than this.

Keys

string[]

Specific keys to search for in the custom user data.

Responses

Name Type Description
200 OK

GetUserDataResult

400 Bad Request

ApiErrorWrapper

This is the outer wrapper for all responses with errors

Security

X-SecretKey

This API requires a title secret key, available to title admins, from PlayFab Game Manager.

Type: apiKey
In: header

Definitions

Name Description
ApiErrorWrapper

The basic wrapper around every failed API response

GetUserDataRequest

Data is stored as JSON key-value pairs. If the Keys parameter is provided, the data object returned will only contain the data specific to the indicated Keys. Otherwise, the full set of custom user data will be returned.

GetUserDataResult
UserDataPermission

Indicates whether a given data key is private (readable only by the player) or public (readable by all players). When a player makes a GetUserData request about another player, only keys marked Public will be returned.

UserDataRecord

ApiErrorWrapper

The basic wrapper around every failed API response

Name Type Description
code

integer

Numerical HTTP code

error

string

Playfab error code

errorCode

integer

Numerical PlayFab error code

errorDetails

object

Detailed description of individual issues with the request object

errorMessage

string

Description for the PlayFab errorCode

status

string

String HTTP code

GetUserDataRequest

Data is stored as JSON key-value pairs. If the Keys parameter is provided, the data object returned will only contain the data specific to the indicated Keys. Otherwise, the full set of custom user data will be returned.

Name Type Description
IfChangedFromDataVersion

number

The version that currently exists according to the caller. The call will return the data for all of the keys if the version in the system is greater than this.

Keys

string[]

Specific keys to search for in the custom user data.

PlayFabId

string

Unique PlayFab assigned ID of the user on whom the operation will be performed.

GetUserDataResult

Name Type Description
Data

UserDataRecord

User specific data for this title.

DataVersion

number

Indicates the current version of the data that has been set. This is incremented with every set call for that type of data (read-only, internal, etc). This version can be provided in Get calls to find updated data.

PlayFabId

string

PlayFab unique identifier of the user whose custom data is being returned.

UserDataPermission

Indicates whether a given data key is private (readable only by the player) or public (readable by all players). When a player makes a GetUserData request about another player, only keys marked Public will be returned.

Name Type Description
Private

string

Public

string

UserDataRecord

Name Type Description
LastUpdated

string

Timestamp for when this data was last updated.

Permission

UserDataPermission

Indicates whether this data can be read by all users (public) or only the user (private). This is used for GetUserData requests being made by one player about another player.

Value

string

Data stored for the specified user data key.