action bungie_destiny2_get_leaderboards_for_character { label: "Destiny2.GetLeaderboardsForCharacter" description: "Gets leaderboards with the signed in user's friends and the supplied destinyMembershipId as the focus. PREVIEW: This endpoint is still in beta, and may experience rough edges. The schema is in final form, but there may be bugs that prevent desirable operation." provider: bungie method: GET path: "/Destiny2/Stats/Leaderboards/{membershipType}/{destinyMembershipId}/{characterId}/" encoding: json input: { type: "object" properties: { characterId: { type: "integer" format: "int64" } destinyMembershipId: { type: "integer" format: "int64" } maxtop: { type: "integer" format: "int32" } membershipType: { type: "integer" format: "int32" } modes: { type: "string" } statid: { type: "string" } } required: ["characterId", "destinyMembershipId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }