Outgoing Application Details (RESERVED)


Overview

Get the details of outgoing interactions between the given application and a specific target application.

URI

GET /rest/applications/{name}/x-out-apps/{other}

Path parameters

name (string)

The source application name.

other (string)

The target application name.

Responses

application/json

Example:

[
  {
    "from": "my-app",
    "to": "other-app",
    "via": [
      {
        "from": {
          "id": 12345,
          "name": "SourceObject",
          "type": "Java Method"
        },
        "to": {
          "id": 67890,
          "name": "TargetObject",
          "type": "C# Method"
        }
      }
    ]
  }
]

JSON representation

Property Type Description
[].from string The name of the source application.
[].to string The name of the target application.
[].via array of objects The list of object-level interactions between the two applications.
[].via[].from object The source object of the interaction.
[].via[].from.id integer The AIP ID of the source object.
[].via[].from.name string The name of the source object.
[].via[].from.type string The type of the source object.
[].via[].to object The target object of the interaction.
[].via[].to.id integer The AIP ID of the target object.
[].via[].to.name string The name of the target object.
[].via[].to.type string The type of the target object.