GET/projects/{ProjectId}/testruns/{Id}

Applies to QAComplete 14.3, last modified on February 19, 2024

Returns information on a specific test run from QAComplete.

Use the operation to get information on the test run specified by its ID, and the ID of the project to which the test run belongs.

To get information on all the test runs the QAComplete project contains, use the …/testruns (GET) operation.

Authentication

Basic authentication using a user’s login and password. See Authentication for details.

Security Rights

The authenticating user must belong to a security group that has the Read privilege for Test Library.

Request Format

To get information on a test run, send a GET request to the following URL:

http://{server}/rest-api/service/api/v2/projects/{ProjectId}/testruns/{Id}

ProjectId  :  integer, required

The ID of the project, to which the test run belongs.

Id  :  integer, required

The ID of the test run you want to get.

A sample request:

GET http://yourserver.com/rest-api/service/api/v2/projects/98429/testruns/663528 HTTP/1.1
Host: yourserver.com
Connection: keep-alive
Accept: application/json
Authorization: Basic am9obkBleGFtcGxlLmNvbTpwQHNzd29yZA==

A sample request made by using cURL:

curl -u [email protected]:p@ssword -H "Accept: application/json" http://yourserver.com/service/api/v2/projects/98429/testruns/663528

Response Format

If successful, the operation responds with HTTP status code 200 and returns a JSON object with the test run information.

A sample response:

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 743



{
  "id": 663528,
  "test_set_id": 277958,
  "test_set_name": "Show",
  "test_config_id": 57266,
  "configuration_name": "Edge",
  "release_id": 115444,
  "project_id": 98429,
  "run_by_user_id": 130457,
  "run_by_user_name": "Smith, John ",
  "is_sequential": true,
  "status_code": "Passed",
  "execution_type": "Manual",
  "date_started": "2016-09-23T06:42:04.6530000",
  "date_finished": "2016-09-23T06:42:16.7700000",
  "nbr_tests": 28,
  "nbr_passed": 28,
  "nbr_failed": 0,
  "nbr_blocked": 0,
  "nbr_awaiting_run": 0,
  "run_time": 0,
  "run_time_formated": "00:00:00",
  "release_name": "11.2/11.2.328",
  "schedule_id": "0",
  "test_host": ""
}

Error responses

If the operation fails, it returns the appropriate status code and (optionally) the error description in the response body.

If the project with the specified ProjectId does not exist or the authenticating user does not have rights to access the project, the operation returns the Access is denied error.

If the test run with the specified Id does not exist, the operation returns the File or directory not found error.

See Also

Test Runs Resources

Highlight search results