GET Test Method
This method returns a list of all tests.
Syntax:
GET /api/test
Curl
$> curl "http://localhost:8080/api/test" -H "Authorization: Basic YWRtaW46YWRtaW4="
Raw Request
GET /api/test HTTP/1.1
Host: localhost:8080
Authorization: Basic YWRtaW46YWRtaW4=
Read Keys
| Parameter | Type |
|---|---|
| _id | Id |
| created_at | Datetime |
| updated_at | Datetime |
| name | String |
| description | String |
| version | String |
| is_active | Boolean |
| test_level_epf_arguments | String |
| notification_email | String |
| abort_timeout | Integer |
| stop_on_failure | Boolean |
| sut_id | Id |
| managed_application_id | Id |
| test_executions | Hash List |
Response Body
{
"limit": 100,
"offset": 0,
"count": 1,
"tests": [
{
"_id": "58c27861444553252c110000",
"created_at": "2017-03-10T09:56:49.409Z",
"updated_at": "2017-05-01T18:45:33.797Z",
"name": "Regression",
"description": null,
"version": "",
"is_active": true,
"test_level_epf_arguments": "",
"notification_email": "",
"abort_timeout": 60,
"stop_on_failure": false,
"sut_id": "58c38f5d444553252cce0000",
"managed_application_id": "58c3fa6b4445530008030000",
"test_executions": [
{
"_id": "58e5eb124445534118010000"
}
]
}
]
}