action bungie_group_v2_abdicate_foundership { label: "GroupV2.AbdicateFoundership" description: "An administrative method to allow the founder of a group or clan to give up their position to another admin permanently." provider: bungie method: POST path: "/GroupV2/{groupId}/Admin/AbdicateFoundership/{membershipType}/{founderIdNew}/" encoding: json input: { type: "object" properties: { founderIdNew: { type: "integer" format: "int64" } groupId: { type: "integer" format: "int64" } membershipType: { type: "integer" format: "int32" } } required: ["founderIdNew", "groupId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }