action bungie_fireteam_get_available_clan_fireteams { label: "Fireteam.GetAvailableClanFireteams" description: "Gets a listing of all of this clan's fireteams that are have available slots. Caller is not checked for join criteria so caching is maximized." provider: bungie method: GET path: "/Fireteam/Clan/{groupId}/Available/{platform}/{activityType}/{dateRange}/{slotFilter}/{publicOnly}/{page}/" encoding: json input: { type: "object" properties: { activityType: { type: "integer" format: "int32" } dateRange: { type: "integer" format: "uint8" } excludeImmediate: { type: "boolean" } groupId: { type: "integer" format: "int64" } langFilter: { type: "string" } page: { type: "integer" format: "int32" } platform: { type: "integer" format: "uint8" } publicOnly: { type: "integer" format: "uint8" } slotFilter: { type: "integer" format: "uint8" } } required: ["activityType", "dateRange", "groupId", "page", "platform", "publicOnly", "slotFilter"] additionalProperties: false } output: { type: "object" additionalProperties: true } }