action getpostman_all_environments { label: "All Environments" description: "The `/environments` endpoint returns a list of all [environments](https://www.getpostman.com/docs/environments) that belong to you..\n\nThe response contains an array of environments' information containing the `name`, `id`, `owner` and `uid` of each environment.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/environments" encoding: json output: { type: "object" properties: { environments: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } owner: { type: "string" } uid: { type: "string" } } } } } } }