GET Run Instance ID Method
Returns a single test run instance by ID.
Syntax:
GET /api/test_run_instance/<id>
Curl
$> curl 'http://localhost:8080/api/test_run_instance/58f6a1de4445532638200000' -H 'Authorization: Basic YWRtaW46YWRtaW4='
Raw Request
GET /api/test_run_instance/58f6a1de4445532638200000 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
{
"_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"
}
]
}