GET Run Instance Execution Method
This method returns a list of all run instance executions.
Syntax:
Curl
Raw Request
GET /api/run_instance_execution 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
{
"limit": 100,
"offset": 0,
"count": 1,
"run_instance_executions": [
{
"_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,
"console_log": < omitted >,
"test_cases": [< 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": ""
}
}
]
}