GET Execution Configuration ID Method
This method returns a single configuration by ID.
Syntax:
GET /api/execution_configuration/<id>
Curl
$> curl 'http://localhost:8080/api/execution_configuration/590780b94445534540280000' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/execution_configuration/590780b94445534540280000 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
{
"_id": "590780b94445534540280000",
"created_at": "2017-05-01T18:38:49.866Z",
"updated_at": "2017-05-01T18:38:49.866Z",
"name": "RegressionConfig",
"description": ""
}