action bungie_destiny2_get_historical_stats { label: "Destiny2.GetHistoricalStats" description: "Gets historical stats for indicated character." provider: bungie method: GET path: "/Destiny2/{membershipType}/Account/{destinyMembershipId}/Character/{characterId}/Stats/" encoding: json input: { type: "object" properties: { characterId: { type: "integer" format: "int64" } dayend: { type: "string" format: "date-time" } daystart: { type: "string" format: "date-time" } 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" } modes: { type: "array" items: { type: "integer" format: "int32" description: "For historical reasons, this list will have both D1 and D2-relevant Activity Modes in it. Please don't take this to mean that some D1-only feature is coming back!" } } periodType: { type: "integer" format: "int32" } } required: ["characterId", "destinyMembershipId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }