Application Transactions


Overview

Get the list of transactions of an application.

URI

GET /rest/applications/{name}/transactions

Path parameters

name (string)

This parameter identifies the analyzed application. The application name must be properly encoded if it is required. Character back-quote is not allowed.

Responses

application/json

The response is the list of transactions. Example:

[
  {
    "id": "345377",
    "startPoint": {
      "fullName": "C:\\cast-node\\common-data\\upload\\Shopizer 2.17.0\\main_sources\\sm-shop\\src\\main\\webapp\\layout\\admin\\layout.jsp.click.#accounts-conf-link",
      "id": "324032",
      "name": "#accounts-conf-link/click",
      "type": "JQuery selector",
      "typeId": "CAST_JQuery_Selector"
    }
  },
  {
    "id": "345530",
    "startPoint": {
      "fullName": "C:\\cast-node\\common-data\\upload\\Shopizer 2.17.0\\main_sources\\sm-shop\\src\\main\\webapp\\pages\\shop\\common\\customer\\dashboard.jsp.submit.#attributes",
      "id": "324010",
      "name": "#attributes/submit",
      "type": "JQuery selector",
      "typeId": "CAST_JQuery_Selector"
    }
  },
  ...
]

JSON representation

PropertyTypeDescription
idstringThe transaction ID.
startPoint.idstringThe transaction start point ID.
startPoint.namestringThe transaction start point name.
startPoint.typestringThe transaction start point type for a display.
startPoint.typeIdstringThe transaction start point type identifier is the type reference key.