action bungie_destiny2_get_leaderboards { label: "Destiny2.GetLeaderboards" description: "Gets leaderboards with the signed in user's friends and the supplied destinyMembershipId as the focus. PREVIEW: This endpoint has not yet been implemented. It is being returned for a preview of future functionality, and for public comment/suggestion/preparation." provider: bungie method: GET path: "/Destiny2/{membershipType}/Account/{destinyMembershipId}/Stats/Leaderboards/" encoding: json input: { type: "object" properties: { destinyMembershipId: { type: "integer" format: "int64" } maxtop: { type: "integer" format: "int32" } membershipType: { type: "integer" format: "int32" } modes: { type: "string" } statid: { type: "string" } } required: ["destinyMembershipId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }