action bungie_destiny2_get_clan_leaderboards { label: "Destiny2.GetClanLeaderboards" 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/Clans/{groupId}/" encoding: json input: { type: "object" properties: { groupId: { type: "integer" format: "int64" } maxtop: { type: "integer" format: "int32" } modes: { type: "string" } statid: { type: "string" } } required: ["groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }