Outgoing Applications (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 list of applications that have outgoing interactions from a given application.
URI
GET /rest/applications/{name}/x-out-apps
Path parameters
name (string)
The application name.
Responses
application/json
Example:
[
{
"from": "my-app",
"to": "other-app",
"nb_calls": 8
}
]
JSON representation
| Property | Type | Description |
|---|---|---|
| [].from | string | The name of the source application. |
| [].to | string | The name of the target application. |
| [].nb_calls | integer | The number of distinct interactions from the source to the target application. |