action vercel_filter_project_envs { label: "Retrieve the environment variables of a project by id or name" description: "Retrieve the environment variables for a given project by passing either the project `id` or `name` in the URL." provider: vercel method: GET path: "/v9/projects/{idOrName}/env" encoding: json input: { type: "object" properties: { decrypt: { type: "string" description: "If true, the environment variable value will be decrypted" enum: ["true", "false"] } gitBranch: { type: "string" description: "If defined, the git branch of the environment variable to filter the results" } idOrName: { type: "string" description: "The unique project identifier or the project name" } source: { type: "string" description: "The source that is calling the endpoint." } teamId: { type: "string" } } required: ["idOrName"] additionalProperties: false } output: { type: "object" } }