test_endpoint
Test API endpoints with configurable environment variables and timeout settings to validate functionality and verify integration workflows.
Instructions
Test a single endpoint with optional environment variables
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endpointId | Yes | Endpoint ID to test | |
| environmentId | No | Environment ID for variables (optional) | |
| variables | No | Variables for interpolation (JSON string, object, or comma-separated key=value pairs) | |
| timeout | No | Request timeout in milliseconds |
Input Schema (JSON Schema)
{
"properties": {
"endpointId": {
"description": "Endpoint ID to test",
"type": "string"
},
"environmentId": {
"description": "Environment ID for variables (optional)",
"type": "string"
},
"timeout": {
"description": "Request timeout in milliseconds",
"type": "number"
},
"variables": {
"description": "Variables for interpolation (JSON string, object, or comma-separated key=value pairs)",
"oneOf": [
{
"description": "Variables as JSON string",
"type": "string"
},
{
"description": "Variables as object",
"type": "object"
}
],
"type": "object"
}
},
"required": [
"endpointId"
],
"type": "object"
}