rest_to_postman_env
Synchronize REST application environment variables with Postman by creating or updating environments. Automatically marks sensitive data as secrets, ensuring secure and efficient configuration management.
Instructions
Creates or updates a Postman environment with the provided environment variables. This tool helps synchronize your REST application's environment configuration with Postman. It supports both creating new environments and updating existing ones in your Postman workspace. Environment variables related to sensitive data (containing 'token' in their names) are automatically marked as secrets. Here's an example:
{ "envName": "REST Environment", "envVars": { "API_URL": "https://api.example.com", "API_TOKEN": "secret-token-1" } }
Input Schema
Name | Required | Description | Default |
---|---|---|---|
envName | Yes | The name of the Postman environment to create or update | |
envVars | Yes | A record of environment variables to be added to the Postman environment. Format: { [key: string]: string } |