action netlify_get_env_vars { label: "getEnvVars" description: "Returns all environment variables for an account or site. An account corresponds to a team in the Netlify UI. To use this endpoint, your site must no longer be using the classic environment variables experience. Migrate now with the Netlify UI." provider: netlify method: GET path: "/accounts/{account_id}/env" encoding: json input: { type: "object" properties: { account_id: { type: "string" } context_name: { type: "string" } scope: { type: "string" } site_id: { type: "string" } } required: ["account_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }