Workspaces and Comparisons
This Eggplant Performance Analyzer REST method returns a list of workspaces and comparisons that are in the analysis database. You use the following URL with a GET HTTP method as described here.
URL
/analyzer/api/1.0
HTTP Method
GET: Gets a list of the workspaces and comparisons that are currently in the analysis database.
Response Parameters
| Parameter | Type | Description | 
|---|---|---|
| comparisons | string | The URL containing detail of comparisons. | 
| workspaces | object | The name and URL of all the workspaces in the database. | 
Example Request
http:/analyzer/api/1.0
Example Response
{
  "comparisons": "http://localhost:5000/analyzer/api/1.0/comparisons",
  "workspaces": {
    "Workspace 1": "http://localhost:5000/analyzer/api/1.0/Workspace%201"
  }
}