vercel.listTeamFeatureFlags lists feature flags across a Vercel team.
automations/list-team-feature-flags.automation.ts
Input
teamId: included in the runnable example and checked by the callable’s TypeScript contract.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Lists feature flags across a Vercel team.
vercel.listTeamFeatureFlags lists feature flags across a Vercel team.
import { automation } from "automate.ax"
import { vercel } from "automate.ax/vercel"
export default automation("List team feature flags", () => {
vercel.listTeamFeatureFlags({
teamId: "team_1",
})
})
teamId: included in the runnable example and checked by the callable’s TypeScript contract.