GET Test Execution ID Method
This method returns a single script by ID.
Syntax:
GET /api/test_execution/<id>
Curl
$> curl 'http://localhost:8080/api/test_execution/58e5eb124445534118010000' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/test_execution/58e5eb124445534118010000 HTTP/1.1
Host: localhost:8080
Authorization: Basic YWRtaW46YWRtaW4=
Read Keys
Parameter | Type |
---|---|
_id | Id |
created_at | Datetime |
updated_at | Datetime |
description | String |
position | Integer |
update_each_execution | Boolean |
is_active | Boolean |
params | String |
command | String |
test_id | Id |
sut_id | Id |
managed_application_id | Id |
script_path | String |
execution_type_id | Integer |
Response Body
{
"_id": "58e5eb124445534118010000",
"created_at": "2017-04-06T07:15:30.176Z",
"updated_at": "2017-05-01T18:41:48.288Z",
"description": "",
"position": 1,
"update_each_execution": true,
"is_active": true,
"params": "",
"command": "",
"test_id": "58c27861444553252c110000",
"sut_id": null,
"managed_application_id": null,
"script_path": "C:/Users/testplant/Documents/regression.suite/Scripts/_master.script",
"execution_type_id": 1
}