Return parameter values for results
Ilya Volkov
When querying results via endpoint https://developers.qase.io/reference/get-results, the results of parametrized cases are returned without any specification of the parameter that used.
It is necessary to get that information through API, right now it is only possible to check in the UI, while in the API response the parameter values are missing.
D
Dilan Athukorala
Currently, the Qase results API (https://api.qase.io/v1/result/TEST?run=100&case_id=2054) returns individual test results for each data line of a scenario outline as separate entries, without a way to group them under a single parent test case result.
To improve this, we need the API to return results in a nested JSON structure:
The parent entity should represent the overall result for the scenario outline (e.g., status: failed if at least one parameterized execution failed).
The child array should contain individual results for each parameter set (data line), including execution details like status, duration, and error (if any).
This grouping will allow better traceability and reporting, especially when analyzing outcomes of parameterized tests.
Attached is an expected sample response format