Fetch test case results
GET
/test_runs/{run_id}/test_case_results/{case_result_id}
Base URL
https://app.testsigma.com/api/v2
Fetch the execution results for a specific test case within a test plan run.
Authenticate with your API key as a
Bearer token in the
Authorization header. Generate a key →PATH PARAMETERS
run_id | The test plan run ID. |
case_result_id | The test case result ID to fetch. |
QUERY PARAMETERS
query | Filter using <parameter><operator><value> chained with commas, e.g. query=testPlanId:1,result:PASSED |
RESPONSE ATTRIBUTES
id | Test case result ID. |
testCaseId | ID of the test case. |
startTime | Test case run start time. |
endTime | Test case run end time. |
duration | Duration in milliseconds. |
result | Result for this test case. |
isDisabled | Whether the test case is disabled. |
isDataDriven | Whether the test case is data-driven. |
metrics | Object with aggregated pass/fail/count metrics for the test case. |
appDetails | Application details for the run, if any. |
REQUEST
curl -X GET \
'https://app.testsigma.com/api/v2/test_runs/{run_id}/test_case_results/{case_result_id}' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'const response = await fetch('https://app.testsigma.com/api/v2/test_runs/{run_id}/test_case_results/{case_result_id}', {
method: 'GET',
headers: {
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
});
const data = await response.json();import requests
response = requests.get(
'https://app.testsigma.com/api/v2/test_runs/{run_id}/test_case_results/{case_result_id}',
headers={
'Authorization': 'Bearer <API_KEY>',
'Content-Type': 'application/json'
}
)
data = response.json()RESPONSE200OK
{
"id": 3857,
"testCaseId": 609,
"startTime": "2024-05-29T07:29:31Z",
"endTime": "2024-05-29T07:29:55Z",
"duration": 23038,
"result": "FAILURE",
"isDisabled": false,
"isDataDriven": false,
"metrics": {
"id": 1089,
"testCaseResultId": 3857,
"testSuiteResultId": 1383,
"testDeviceResultId": 1434,
"testPlanResultId": 517,
"totalCount": 6,
"failedCount": 1,
"passedCount": 3,
"stoppedCount": 0,
"notExecutedCount": 2,
"queuedCount": 0,
"skippedCount": 0,
"runningCount": 0,
"result": "FAILURE",
"latestResult": "FAILURE",
"duration": 23038,
"consolidatedDuration": 23038
},
"appDetails": null
}