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.

Query parameters

name (string)

Optional. A substring of the transaction name to match. The matching is case insensitive. The string must be properly encoded if it is required (character & must be encoded with %26).

fullname (string)

Optional. A substring of the transaction full name to match. The matching is case insensitive. The string must be properly encoded if it is required (character & must be encoded with %26).

stack (string)

Optional. A substring of any of the transaction technology stack list. The matching is case insensitive.

Responses

application/json

The response is the list of transactions. Example:

[
  {
    "id": "345377",
    "name": "ACT113P",
    "size": 19,
    "stack": ["cobol","ibm"],
    "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",
    "name": "ACT112P",
    "size": 23,
    "stack": ["cobol"],
    "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.
namestringThe transaction name.
sizeintThe transaction size.
stackstringThe transaction technologies.
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.