GET Execution Configuration Method
This method returns a list of all configurations.
Syntax:
GET /api/execution_configuration
Curl
$> curl 'http://localhost:8080/api/execution_configuration' -H 'Authorization: Basic YWRtaW46YWRtaW4='
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 |
Response Body
{
"limit": 100,
"offset": 0,
"count": 1,
"execution_configurations": [
{
"_id": "590780b94445534540280000",
"created_at": "2017-05-01T18:38:49.866Z",
"updated_at": "2017-05-01T18:38:49.866Z",
"name": "RegressionConfig",
"description": ""
}
]
}