GET   testresultdata/{testResultId}/transaction/{transactionId}/data

Returns data of test result transaction

URL Parameters

NameDescription
testResultId

Id of loadtest result

transactionId

Id of transaction

Response body model example and description

{
  "test_result_id": 1,
  "data": {
    "transaction_id": 1,
    "transaction_number": 2,
    "transaction_name": "sample string 3",
    "timestamps": [
      1,
      2,
      3
    ],
    "response_times": [
      1,
      2,
      3
    ]
  },
  "exception": "An exception was encountered during execution: {exception details...}"
}
Name Type Description
test_result_id Integer

Test Result Id

data Object

Transaction data

transaction_id Integer

Transaction Id

transaction_number Integer

Transaction Number

transaction_name String

Transaction Name

timestamps Array

Array of timestamps

response_times Array

Array of response times

exception String

Any exception that arose during the function call. In case no exception was thrown this will be an empty string.

;