Testinium Enterprise
  • TESTINIUM ENTERPRISE
    • Testinium Enterprise Documentation
  • Login
    • User Login
    • Reset Password
  • Dashboard
    • Dashboard
    • User Profile
    • Company Details
  • System Settings
    • System Settings
      • Licence Information
        • Add New Licence Key
        • Edit Licence Key
        • Delete Licence Key
        • Update Public Key
      • General Test Plan Settings
      • System Properties
        • Creating New System Property
        • Edit Property
        • Delete Property
      • Selenium Hubs
        • Creating Selenium Hub
        • Edit Selenium Hub
        • Delete Selenium Hub
      • Role / Permission Management
        • Roles
          • Create New Role
          • Edit Role
          • Delete Role
        • Permission
          • Create New Permission
          • Edit Permission
          • Delete Permission
      • Browsers / Phones
        • Create New Phone/Browser
        • Edit Phone/Browser
        • Delete Browser/Phone
      • Test Environments
        • Create New Environment
        • Edit Enviroment
        • Delete Environment
      • Test Environment Status
      • Active Tests
      • Screen Resolutions
        • Create New Screen Resolution
        • Edit Screen Resolution
        • Delete Screen Resolution
      • Predefined Exceptions
        • Create Predefined Exception
        • Edit Predefined Exception
        • Delete Predefined Exception
      • Cloud Test Environment
      • Cloud Test Environments Groups
        • Create Cloud Environment Group
        • Edit Cloud Environment Group
        • Delete Cloud Environment Group
      • Notifications
      • Project Clone
      • Company’s Scheduled Plan
  • Companies
    • Companies
      • Create New Company
      • Edit Company
  • Users
    • Users
      • Create New User
      • Edit User
      • Delete User
      • Manage Roles
  • Projects
    • Projects
      • Create New Project
      • Edit Project
      • Delete Project
  • Plans
    • Plans
      • Create Plan
      • Edit Plan
      • Delete Plan
      • Test Report
      • Run Test Plan
      • Show Running Test Plan
      • Run with Tag
      • New Tag
  • Scenarios
    • Scenarios
      • Create New Scenarios
      • Create New Group
      • New Sub Scenario
      • Edit Scenario
      • Delete Scenario
      • Export Excel
  • BDD EDITOR
    • Create Concept File
    • Create Spec File
    • Create Feature File
  • REPORTS
    • Test Executions (Auto)
      • Test Result Reports
    • Test Execution(Remote)
    • Detailed Reports
      • Test Result Report
    • Instant Reports
    • Scheduled Report
      • Create New Periodically Reports
      • Edit Periodically Report
      • Delete Periodically Report
      • Report History
    • Graph Report
    • Execution Graph
    • Pass Rate Reports
    • Test Executions (Tag)
    • Test Result by Period
  • Plugins
    • Plugins
      • Jenkins
      • Azure Devops Board
      • Jira
      • Testinium Cloud
  • API's
    • Auth
      • Login
    • Project
      • Get All Projects
      • Get Project by ID or Name
      • Get Projects by Company ID
      • Get Active Project By ID
      • Get All Projects by User's Companies
      • Get All Companies
      • Create Project
      • Update Project
      • Upload File to Project
      • Delete Mobile App
    • Scenario
      • Get All Scenarios
      • Get Scenarios Of Plan
      • Get Scenario by Name or ID
      • Get Scenarios by User Company
      • Get Test Parameters
      • Create Scenario
      • Update Scenario
      • Update Test Parameters
    • Plan
      • Get All Plans
      • Get All Plans By Project Name or ID
      • Get All Plans by User's Companies
      • Get Plans Of Scenario
      • Get All Active Plans by Project ID
      • Get Plan By ID
      • Get Plan By Project And Plan Name Or Id
      • Get Active Plan By ID
      • Create Test Plan
      • Update Test Plan
      • Update Selected Android Mobile App for Test Plan
      • Update Selected iOS Mobile App for Test Plan
      • Run Test Plan
      • Run Test Plan with Company ID
      • Rerun Test Plan
      • Stop Test Plan
      • Check If Test Plan Is Running
    • Reports
      • Get Test Execution by ID
      • Get All Test Executions by Plan
      • Get All Test Executions by Plan and Page
      • Get Test Result by ID
      • List Test Results by Execution ID
      • List Test Results
  • RELEASE NOTES
    • Release Notes
      • Testinium-Enterprise 1.16.7 Release Notes
      • Testinium-Enterprise 1.16.6 Release Notes
      • Testinium-Enterprise 1.16.5 Release Notes
      • Testinium-Enterprise 1.16.4 Release Notes
      • Testinium-Enterprise 1.16.3 Release Notes
      • Testinium-Enterprise 1.16.2 Release Notes
      • Testinium-Enterprise 1.15.1 Release Notes
      • Testinium-Enterprise 1.15.0 Release Notes
      • Testinium 1.14.4 Release Notes​
      • Testinium 1.14.1 Release Notes
      • Testinium 1.14.0 Release Notes
      • Testinium 1.13.4 Release Notes
      • Testinium 1.13.0 – 1.13.3 Release Notes
  • Appium 2 Sample Projects
    • Appium 2 Sample Projects
      • Appium 2 Java
        • BaseTest
        • IOSTest And AndroidTest
        • Hook
      • Appium 2 Gauge
        • HookImp
        • pom.xml
        • StepImp
        • Spec File
        • Concept File
Powered by GitBook
On this page
  • Endpoint Information
  • Path Parameters
  • Response Body
  • Error Codes
  • Example Request
  1. API's
  2. Reports

List Test Results by Execution ID

The endpoint retrieves a paginated list of test results for a specific test execution ID, limited to results accessible by the authenticated user's company.


Endpoint Information

  • URL: <custom-env-url>/Testinium.RestApi/api/testResults/executionId/{execId}/pages/{page}

  • Method: GET

  • Authentication: Bearer Token is required


Path Parameters

Parameter
Type
Required
Description

execId

Long

Yes

The unique ID of the test execution.

page

int

Yes

The page number for paginated results.


Response Body

The response contains a PaginatedTestResultList object with details on pagination and a list of TestResultDTO objects for the requested page.

{
  "pagination": {
    "current_page": 1,
    "total_count": 1,
    "page_limit": 50
  },
  "test_result_list": [
    {
      "id": 150912,
      "level": "SUCCESS",
      "start_date": 1428833706000,
      "end_date": 1428833706000,
      "runtime": 0,
      "session_id": "dummy-47359440135365756567",
      "video_enabled": false,
      "performance_data_enabled": false,
      "test_scenario": {
        "id": 152
      },
      "test_plan": {
        "id": 35
      },
      "project": {
        "id": 28
      },
      "video_format": "FLV",
      "test_execution": {
        "id": 8786
      },
      "node_log_path": "http://127.0.0.1:8080//storage?key=1/2015/04/12/dummy-47359440135365756567/node.log",
      "executor_log_path": "http://127.0.0.1:8080//storage?key=1/2015/04/12/dummy-47359440135365756567/testResult.log"
    }
  ]
}

Pagination Object

Field
Type
Description

current_page

int

The current page number.

total_count

int

Total count of items available for pagination.

page_limit

int

Number of items displayed per page.

Test Result Object

Field
Type
Description

id

Long

The unique ID of the test result.

level

String

Status of the test result (e.g., SUCCESS).

start_date

Long

Start timestamp of the test execution in milliseconds.

end_date

Long

End timestamp of the test execution in milliseconds.

runtime

int

Execution time of the test in milliseconds.

session_id

String

The session identifier of the test result.

video_enabled

Boolean

Indicates if video recording is enabled.

performance_data_enabled

Boolean

Indicates if performance data is available.

test_scenario.id

Long

ID of the test scenario.

test_plan.id

Long

ID of the test plan.

project.id

Long

ID of the associated project.

video_format

String

Format of the video, if recorded (e.g., FLV).

test_execution.id

Long

ID of the test execution associated with the result.

node_log_path

String

URL path to the node log file.

executor_log_path

String

URL path to the executor log file.


Error Codes

HTTP Code
Error Message
Description

400

Invalid Request

The request was malformed or contained errors.

401

Unauthorized

User authentication failed.

403

Access Denied

User does not have access to this test execution.

404

Test Execution Not Found

No test execution was found for the given ID.

500

Internal Server Error

An unexpected error occurred on the server side.


Example Request

curl --location '<custom-env-url>/Testinium.RestApi/api/testResults/executionId/{execId}/pages/{page}' \
--header 'Authorization: Bearer <your_access_token>'
PreviousGet Test Result by IDNextList Test Results

Last updated 2 months ago