Object Data Graphs
Overview
Get the list of data graphs to which an object belongs:
- Data graphs are sorted by name.
URI
GET /rest/applications/{name}/objects/{id}/data-graphs
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.
id (integer)
required The unique identifier (AipId) of the object for which to retrieve data graphs.
Responses
application/json
A list of data graphs. Example:
[
{
"id": "345555",
"startPoint": {
"id": "326912",
"name": "processOrder",
"type": "Java Method",
"typeId": 12345
}
},
{
"id": "345556",
"startPoint": {
"id": "326920",
"name": "handleRequest",
"type": "Servlet Any Operation",
"typeId": 67890
}
}
]
JSON representation
| Property | Type | Description |
|---|---|---|
| id | string | The data graph ID. |
| startPoint.id | string | The data graph start point ID. |
| startPoint.name | string | The data graph start point name. |
| startPoint.type | string | The data graph start point type for display. |
| startPoint.typeId | integer | The data graph start point type identifier is the type reference key. |