action bungie_destiny2_get_clan_aggregate_stats { label: "Destiny2.GetClanAggregateStats" description: "Gets aggregated stats for a clan using the same categories as the clan leaderboards. 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/AggregateClanStats/{groupId}/" encoding: json input: { type: "object" properties: { groupId: { type: "integer" format: "int64" } modes: { type: "string" } } required: ["groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }