GET Execution Configuration Method
This method returns a list of all configurations.
Syntax:
Curl
Raw Request
GET /api/execution_configuration 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 |
| run_with_best_effort | Boolean |
| configuration_environments | Hash list |
The configuration_environments hash list should be an array of hashes that can contain zero or more of the following parameters:
| Parameter | Type |
|---|---|
| arguments | String |
| parameters | String |
| sut_id | ID |
| managed_application_id | ID |
Response Body
{
"limit": 100,
"offset": 0,
"count": 1,
"execution_configurations": [
{
"_id": "5be485dbbe870fad89000006",
"created_at": "2018-11-08T11:52:11.314-07:00",
"updated_at": "2018-11-08T11:52:11.314-07:00",
"name": "RegressionConfig",
"description": "",
"run_with_best_effort": false,
"configuration_environments": [
{
"_id": "5c17ba64be870f8fca000003",
"arguments": "",
"parameters": "",
"sut_id": "5b16d6bcbe870fe29d000005",
"managed_application_id": "5c17b9f3be870ff23d000002",
"execution_configuration_id": "5be485dbbe870fad89000006",
"updated_at": "2018-12-17T15:01:56Z",
"created_at": "2018-12-17T15:01:56Z"
},
{
"_id": "5c17ba64be870f8fca000004",
"arguments": "",
"parameters": "",
"sut_id": "5b525648be870fbf11000010",
"managed_application_id": "5c17b9f3be870ff23d000002",
"execution_configuration_id": "5be485dbbe870fad89000006",
"updated_at": "2018-12-17T15:01:56Z",
"created_at": "2018-12-17T15:01:56Z"
}
]
}
]
}