Skip to main content

List Tests and Series

This Eggplant Performance Test Controller REST method gets a list of the available tests and series within a specified project.

URL

/test_controller/api/1.0/<workspace>/<project>

HTTP Method

GET: Gets a list of the available tests and series within the specified project

Response Parameters

ParameterTypeDescription
seriesObjectThe name and details of all series.
testsObjectThe name and URL of all the available tests.

Example Request

http://localhost:5001/test_controller/api/1.0/Demo%20Workspace/Demo

Example Response

{
"series": {
"Default Series": {
"lastRun": "2016-09-17T06:37:45.244040",
"nextRunNumber": 2,
"name": "Default Series"
}
},
"tests": {
"demoScript": "/test_controller/api/1.0/Demo%20Workspace/Demo/demoScript"
}
}