delete_environment
Remove an environment from the GASSAPI backend to manage API endpoints and testing workflows. Specify the environment ID to delete it from the system.
Instructions
Delete an environment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| environmentId | Yes | Environment ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"environmentId": {
"description": "Environment ID to delete",
"type": "string"
}
},
"required": [
"environmentId"
],
"type": "object"
}