action getpostman_single_environment { label: "Single Environment" description: "Access the contents of an environment that is accessible to you using its unique id (`uid`).\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/environments/{environment_uid}" encoding: json output: { type: "object" properties: { environment: { type: "object" properties: { id: { type: "string" } name: { type: "string" } values: { type: "array" items: { type: "object" properties: { enabled: { type: "boolean" } hovered: { type: "boolean" } key: { type: "string" } type: { type: "string" } value: { type: "string" } } } } } } } } }