GET Run Instance Method
This method returns a list of all test run instances.
Syntax:
GET /api/test_run_instance
Curl
$> curl 'http://localhost:8080/api/test_run_instance' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/test_run_instance 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 |
status_code | Status Code |
run_instance_executions | Hash List |
test_cases | Hash List |
instance_number | Integer |
Response Body
{
"limit": 100,
"offset": 0,
"count": 1,
"test_run_instances": [
{
"_id": "58f6a1de4445532638200000",
"created_at": "2017-04-18T23:31:42.147Z",
"updated_at": "2017-04-18T23:32:11.629Z",
"test_run_id": "58f6a1dd44455326381e0000",
"status_code": 400,
"instance_number": 1,
"test_cases": [< omitted >],
"run_instance_executions": [
{
"_id": "58f6a1de4445532638210000"
}
]
}
]
}