Object Direct Children
Overview
Get the list of direct children objects for a specific parent Object (see Parent Object/Children relationship). Objects are sorted by name.
URI
GET /rest/applications/{name}/objects/{id}/children
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 children objects. Example:
[
{ "id": "1263", "name": "CurrencyControllerService", "type": "Java Constructor", typeId: "JV_CTOR" },
{ "id": "1436", "name": "getConversion", "type": "Java Method", typeId: "JV_METHOD" },
{ "id": "1437", "name": "getHistorical", "type": "Java Method", typeId: "JV_METHOD" }
]
JSON representation
Property | Type | Description |
---|---|---|
id | string | The object ID |
name | string | The object name |
type | string | The object type for a display |
typeId | string | The object type identifier is the type reference key |