Incoming Application Details (RESERVED)

RESERVED: The keyword RESERVED annotation means that the API is available for use but is not yet part of the officially supported specification. Its behavior, interface, or output may change in future releases without backward compatibility guarantees.


Overview

Get the details of incoming interactions between a specific source application and the given application.

URI

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

Path parameters

name (string)

The target application name.

other (string)

The source application name.

Responses

application/json

Example:

[
  {
    "from": "other-app",
    "to": "my-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.