loaderLeaderboard

API References for Leaderboard Service

Explore the list of API functions available in TypeScript for managing leaderboards and player scores, including detailed descriptions and usage examples.

circle-exclamation

Get Available Leaderboardsarrow-up-right

Retrieves a list of leaderboards based on the provided parameters.

DynamicPixels.Services.Leaderboards.GetLeaderboards(): Promise<Leaderboard[]>

Get Users Scoresarrow-up-right

Obtains scores for individual users as specified by the input parameters.

DynamicPixels.Services.Leaderboards.GetUsersScores(input: GetScoresParams): Promise<UserScore[]>

Get Parties Scoresarrow-up-right

Fetches scores for different parties (e.g., teams or groups) according to the given parameters.

DynamicPixels.Services.Leaderboards.GetPartiesScores(input: GetScoresParams): Promise<PartyScore[]>

Get Friends Scoresarrow-up-right

Gathers scores specifically for friends of the current user.

DynamicPixels.Services.Leaderboards.GetFriendsScores(input: GetMyFriendsScoresParams): Promise<UserScore[]>

Get My Scorearrow-up-right

Retrieves the score of the current user based on the input parameters.

Submit New Scorearrow-up-right

Submits a user's score and returns the result.

Last updated