get_environment_details
Retrieve detailed environment information and variables for API development workflows using environment ID.
Instructions
Get detailed environment information including variables
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| environmentId | Yes | Environment ID to get details for | |
| includeVariables | No | Include environment variables in response |
Input Schema (JSON Schema)
{
"properties": {
"environmentId": {
"description": "Environment ID to get details for",
"type": "string"
},
"includeVariables": {
"default": true,
"description": "Include environment variables in response",
"type": "boolean"
}
},
"required": [
"environmentId"
],
"type": "object"
}