set_default_environment
Set a specific environment as the default for your project to ensure consistent API testing and development workflows across your team.
Instructions
Set an environment as the default for the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| environmentId | Yes | Environment ID to set as default |
Input Schema (JSON Schema)
{
"properties": {
"environmentId": {
"description": "Environment ID to set as default",
"type": "string"
}
},
"required": [
"environmentId"
],
"type": "object"
}