create_environment
Create a new environment with custom variables to manage API configurations and testing workflows for backend development.
Instructions
Create a new environment with variables
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Environment name | |
| description | No | Environment description | |
| variables | No | Environment variables (JSON string, object, or comma-separated key=value pairs) | |
| isDefault | No | Set as default environment | |
| projectId | No | Project ID (optional, will use current project if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Environment description",
"type": "string"
},
"isDefault": {
"default": false,
"description": "Set as default environment",
"type": "boolean"
},
"name": {
"description": "Environment name",
"type": "string"
},
"projectId": {
"description": "Project ID (optional, will use current project if not provided)",
"type": "string"
},
"variables": {
"description": "Environment variables (JSON string, object, or comma-separated key=value pairs)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}