action bungie_destiny2_get_clan_weekly_reward_state { label: "Destiny2.GetClanWeeklyRewardState" description: "Returns information on the weekly clan rewards and if the clan has earned them or not. Note that this will always report rewards as not redeemed." provider: bungie method: GET path: "/Destiny2/Clan/{groupId}/WeeklyRewardState/" encoding: json input: { type: "object" properties: { groupId: { type: "integer" format: "int64" } } required: ["groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }