Object Transactions
Overview
Get the list of transactions to which an object belongs:
- Transactions are sorted by name.
 
URI
GET /rest/applications/{name}/objects/{id}/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
A list of transactions. Example:
[
  {
    "id": "345555",
    "startPoint": {
      "id": "326912",
      "name": "#billingStateList/change",
      "type": "JQuery selector",
      "typeId": "CAST_JQuery_Selector"
    }
  },
JSON representation
| Property | Type | Description | 
|---|---|---|
| id | string | The transaction ID. | 
| 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. |