Remove an Analysis View from an Existing Comparison
This Eggplant Performance Analyzer REST method removes an analysis view from an existing comparison. You use the following URL with a POST HTTP method as described here.
URL
/analyzer/api/1.0/comparisons/<comparison>/remove_analysis_view
HTTP Method
POST: Removes an analysis view from an existing comparison.
Request Parameters
Parameter | Type | Description |
---|---|---|
workspace | string | The name of the workspace containing the analysis view to remove. |
project | string | The name of the project containing the analysis view to remove. |
series | string | The name of the series containing the analysis view to remove. |
test | string | The name of the test containing the analysis view to remove. |
runNumber | number | The run number of the test containing the analysis view to remove. |
analysisView | string | The name of the analysis view to remove. |
Response Parameters
None.
Example Request
http:/analyzer/api/1.0/comparisons/My%20Comparison/remove_analysis_view
POST Data
{
"workspace": "Workspace 1",
"project": "Project 1",
"series": "Series 1",
"test": "Test 1",
"runNumber": 1,
"analysisView": "View 1"
}
Example Response
{}