action vercel_get_project_env { label: "Retrieve the decrypted value of an environment variable of a project by id" description: "Retrieve the environment variable for a given project." provider: vercel method: GET path: "/v1/projects/{idOrName}/env/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" description: "The unique ID for the environment variable to get the decrypted value." } idOrName: { type: "string" description: "The unique project identifier or the project name" } teamId: { type: "string" } } required: ["id", "idOrName"] additionalProperties: false } output: { type: "object" required: ["key", "type", "value"] properties: { configurationId: { type: ["string", "null"] } createdAt: { type: "number" } createdBy: { type: ["string", "null"] } decrypted: { type: "boolean" description: "Whether `value` is decrypted." } edgeConfigId: { type: ["string", "null"] } edgeConfigTokenId: { type: ["string", "null"] } gitBranch: { type: "string" } id: { type: "string" } key: { type: "string" } target: { type: "object" } type: { type: "string" enum: ["secret", "system", "encrypted", "plain", "sensitive"] } updatedAt: { type: "number" } updatedBy: { type: ["string", "null"] } value: { type: "string" } } } }