Skip to main content

Eggplant Performance Analyzer Projects

These REST methods are for working with Eggplant Performance Analyzer projects. You use the following URL with a GET HTTP method to return information about a specified project, or a DELETE HTTP method to delete a specified project. The GET method is shown first, followed by the DELETE method.

URL

/analyzer/api/1.0/<workspace>/<project>

HTTP Method

GET: Gets information about a specified project.

Response Parameters

ParameterTypeDescription
seriesobjectThe names and URLs of the series in this workspace.

Example Request

http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201

Example Response

{
"series": {
"Series 1": "http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201/Series%201"
}
}

HTTP Method

DELETE: Deletes a specified project.

Response Parameters

ParameterTypeDescription
workspacestringThe URL of the workspace that contained the project.

Example Request

http://localhost:5000/analyzer/api/1.0/Workspace%201/Project%201

Example Response

{
"workspace": "http://localhost:5000/analyzer/api/1.0/Workspace%201"
}