action bungie_group_v2_get_group_by_name { label: "GroupV2.GetGroupByName" description: "Get information about a specific group with the given name and type." provider: bungie method: GET path: "/GroupV2/Name/{groupName}/{groupType}/" encoding: json input: { type: "object" properties: { groupName: { type: "string" } groupType: { type: "integer" format: "int32" } } required: ["groupName", "groupType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }