list_environments
Retrieve all available environments for your current project to manage API testing and development workflows.
Instructions
List all environments for current project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | No | Project ID (optional, will use current project if not provided) | |
| activeOnly | No | Show only active environments |
Input Schema (JSON Schema)
{
"properties": {
"activeOnly": {
"default": true,
"description": "Show only active environments",
"type": "boolean"
},
"projectId": {
"description": "Project ID (optional, will use current project if not provided)",
"type": "string"
}
},
"type": "object"
}