GET testresultdata/{testResultId}/transactions/list
Returns the transaction list of loadtest result
URL Parameters
| Name | Description |
|---|---|
| testResultId | Id of loadtest result |
Response body model example and description
{
"test_result_id": 1,
"transactions": [
{
"transaction_id": 1,
"transaction_name": "sample string 2",
"transaction_number": 3
},
{
"transaction_id": 1,
"transaction_name": "sample string 2",
"transaction_number": 3
},
{
"transaction_id": 1,
"transaction_name": "sample string 2",
"transaction_number": 3
}
],
"exception": "An exception was encountered during execution: {exception details...}"
}
| Name | Type | Description |
|---|---|---|
| test_result_id | Integer |
Test Result Id |
| transactions | Array |
List of test result transactions |
| transaction_id | Integer |
Transaction Id |
| transaction_name | String |
Transaction Name |
| transaction_number | Integer |
Transaction number |
| exception | String |
Any exception that arose during the function call. In case no exception was thrown this will be an empty string. |