action netlify_get_env_var { label: "getEnvVar" description: "Returns an individual environment variable. 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/{key}" encoding: json input: { type: "object" properties: { account_id: { type: "string" } key: { type: "string" } site_id: { type: "string" } } required: ["account_id", "key"] additionalProperties: false } output: { type: "object" additionalProperties: true } }