Source
This page was generated with Wiki Builder. Do not change the format!
Info
The most essential summary information about a Profile (in Destiny 1, we called these "Accounts").
Schema
- Schema Type: Class
- Type: object
- Component Type Dependency: Profiles
Properties
Name | Type | Description |
---|---|---|
userInfo | UserInfoCard | If you need to render the Profile (their platform name, icon, etc...) somewhere, this property contains that information. |
dateLastPlayed | string:date-time | The last time the user played with any character on this Profile. |
versionsOwned | DestinyGameVersions:Enum | If you want to know what expansions they own, this will contain that data. |
characterIds | integer:int64[] | A list of the character IDs, for further querying on your part. |
Example
{
// Type: UserInfoCard
"userInfo": {},
// Type: string:date-time
"dateLastPlayed": "",
// Type: DestinyGameVersions:Enum
"versionsOwned": {},
// Type: integer:int64[]
"characterIds": [
// Type: integer:int64
0
]
}