action getpostman_delete_environment { label: "Delete Environment" description: "This endpoint allows you to delete a single environment based on an environment's unique `uid`.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: DELETE path: "/environments/{environment_uid}" encoding: json output: { type: "object" properties: { environment: { type: "object" properties: { id: { type: "string" } uid: { type: "string" } } } } } }