Skip to main content

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

ParameterTypeDescription
workspacestringThe name of the workspace containing the analysis view to remove.
projectstringThe name of the project containing the analysis view to remove.
seriesstringThe name of the series containing the analysis view to remove.
teststringThe name of the test containing the analysis view to remove.
runNumbernumberThe run number of the test containing the analysis view to remove.
analysisViewstringThe name of the analysis view to remove.

Response Parameters

None.

Example Request

http://localhost:5000/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

{}