GET Run Execution ID Method
This method returns a single instance execution by ID.
Syntax:
GET /api/run_instance_execution/<id>
Curl
$> curl 'http://localhost:8080/api/run_instance_execution/58f6a1de4445532638210000' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/run_instance_execution/58f6a1de4445532638210000 HTTP/1.1
Host: localhost:8080
Authorization: Basic YWRtaW46YWRtaW4=
Read Keys
Parameter | Type |
---|---|
_id | Id |
created_at | Datetime |
updated_at | Datetime |
test_run_id | Id |
run_index | Integer |
status_code | Integer |
console_log | String |
log_files | Hash List |
sut | Hash |
test_cases | Hash List |
Response Body
{
"_id": "58f6a1de4445532638210000",
"created_at": "2017-04-18T23:31:42.162Z",
"updated_at": "2017-04-18T23:32:11.478Z",
"test_run_id": "58f6a1dd44455326381e0000",
"run_index": 0,
"status_code": 400,
"test_cases": [< omitted >],
"console_log": < omitted >,
"log_files": [
{
"_id": "58f6a1fb4445532638280000"
}
],
"sut": {
"created_at": "2017-03-11T05:47:09Z",
"description": "",
"is_active": true,
"manufacturer": "",
"model": "",
"name": "Win10",
"os": "",
"updated_at": "2017-04-06T07:53:34Z",
"version": ""
}
}