Get Test Result Detailed
Fetches detailed test results along with test command results, paginated based on the given parameters.
Endpoint Information
URL:
https://testinium.io/Testinium.RestApi/api/results/{resultId}/detailed/filter
Method:
GET
Authentication: Required (
Bearer Token
)Header: Required (
current-company-id: <your_company_id>
Path Parameters
resultId
Long
The unique ID of the test result to fetch detailed information.
page
Integer
The page number for paginated results.
size
Integer
The number of results per page.
isDesc
Boolean
Whether the results should be ordered in descending order (optional).
Response
Response Fields
id
Integer
Unique ID of the test result.
level
String
The level of the test result (e.g., ERROR
).
runtime
Integer
The runtime of the test in milliseconds.
environment
Object
Details about the environment used during the test.
session_id
String
The session ID for the test result.
message
String
Any message related to the test result.
screenshots_enabled
Boolean
Whether screenshots are enabled for the test result.
screen_shot_type
String
The type of screenshot capture (e.g., ONLY_FAILURE
).
video_enabled
Boolean
Whether video recording is enabled for the test result.
node_log_path
String
The URL path to the node log for the test.
executor_log_path
String
The URL path to the executor log for the test.
screen_resolution
String
The screen resolution used during the test.
user_info
Object
Information about the user who ran the test.
start_date
String
The start date of the test result.
end_date
String
The end date of the test result.
test_result_commands
Array
A list of commands associated with the test result.
test_result_commands_paginated_result
Object
A paginated result of test commands associated with the test result.
Error Codes
400
BAD_REQUEST
Invalid request parameters.
401
UNAUTHORIZED
The user is not authorized to access this resource.
403
FORBIDDEN
The user does not have sufficient permissions to access the resource.
404
NOT_FOUND
The specified test result was not found.
500
INTERNAL_ERROR
An internal server error occurred while processing the request.
Example Request
Last updated