Get Test Results

Use this endpoint when you need to export the structured result content of a completed test run, for example to synchronize webmate results into external test management tools such as Jira Xray or aqua. The result payload includes text cells and steps for the provided testRunId.

Retrieve screenshot artifacts

Screenshots and other binary evidence are exposed as artifacts. Use the test-run result endpoint together with the artifact endpoints when an integration needs both textual results and images.

  1. Get the structured result content:

    1
    
    GET /testmgmt/testruns/{testRunId}/results
    
  2. List artifacts for the same test run:

    1
    
    GET /projects/{projectId}/artifact?testRunId={testRunId}
    

    This response contains artifact metadata.

  3. Fetch the artifact details for the relevant artifact ids:

    1
    
    GET /artifact/artifacts?ids={commaSeparatedArtifactIds}
    

    Use this response to identify the screenshot image ids.

  4. Download each screenshot image:

    1
    
    GET /images/{imageId}
    

Keep the projectId, testRunId, artifact ids, and image ids from the same test run together in your integration. This makes it easier to map screenshots back to the result step or finding that produced them.