postman-mcp-server

update_environment

Update an existing environment. Only include variables that need to be modified.

Input Schema

NameRequiredDescriptionDefault
environmentYesEnvironment details to update
environmentIdYesEnvironment ID in format: {ownerId}-{environmentId}

Input Schema (JSON Schema)

{ "properties": { "environment": { "description": "Environment details to update", "properties": { "name": { "description": "New environment name (optional)", "type": "string" }, "values": { "description": "Environment variables to update (optional)", "items": { "properties": { "enabled": { "type": "boolean" }, "key": { "type": "string" }, "type": { "enum": [ "default", "secret" ], "type": "string" }, "value": { "type": "string" } }, "required": [ "key", "value" ], "type": "object" }, "type": "array" } }, "type": "object" }, "environmentId": { "description": "Environment ID in format: {ownerId}-{environmentId}", "type": "string" } }, "required": [ "environmentId", "environment" ], "type": "object" }

You must be authenticated.

Other Tools