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

Property Type Description
id string The transaction ID.
name string The transaction name.
size int The transaction size.
stack []string The transaction technologies.
startPoint.id string The transaction start point ID.
startPoint.name string The transaction start point name.
startPoint.type string The transaction start point type for a display.
startPoint.typeId string The transaction start point type identifier is the type reference key.