action bungie_destiny2_get_historical_stats_for_account { label: "Destiny2.GetHistoricalStatsForAccount" description: "Gets aggregate historical stats organized around each character for a given account." provider: bungie method: GET path: "/Destiny2/{membershipType}/Account/{destinyMembershipId}/Stats/" encoding: json input: { type: "object" properties: { destinyMembershipId: { type: "integer" format: "int64" } groups: { type: "array" items: { type: "integer" format: "int32" description: "If the enum value is > 100, it is a \"special\" group that cannot be queried for directly (special cases apply to when they are returned, and are not relevant in general cases)" } } membershipType: { type: "integer" format: "int32" } } required: ["destinyMembershipId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }