Skip to main content
Character Data belongs to a character owned by the current user. Use it for values that differ per playable character, such as level, equipment, stats, and loadout. The representative character is only the profile/default convenience target. Games with multiple playable characters can pass characterId explicitly and do not need to update the representative character every time the player switches characters. For account-wide currency, achievements, or settings, use user data from Data Management.

Setup

  1. Create a character data table in Console.
  2. Define the fields and types.
  3. Sign in a user and keep the target character ID available in the client.

Save

To save data for the representative character, use the existing convenience method.
To save data for a specific character, pass the character ID.
The payload must match the Console schema. Unknown fields or wrong types are rejected.

Load

Representative character data:
Specific character data:
The response includes existence, schema version, and JSON payload.

Tips

  • Keep the selected character ID in your character selection UI and pass it to SaveCharacterDataForCharacter and GetCharacterDataForCharacter.
  • Update the representative character only when you want profile, search, or friend views to show a different character.
  • Keep Console schemas and client models aligned.
  • Store searchable gameplay metrics in purpose-built features such as rankings, groups, or game logs.