Create application to application links. This will add the provided set of applications to the current set of linked applications.
https://api.ideasystem.org/v1/app/appID/links/apps
The JSON body will contain a list of application IDs that should be linked to the specified application.
The response will be an HTTP 200 with a JSON body. The body will contain the list of currently linked applications.
If the given application ID cannot be found, an HTTP 404 (Not Found) will be returned. If there is an issue with the backend, a HTTP 500 (Internal Server Error) is returned. If the application name/key you are using doesn't have access to this REST end-point, you will get a 403 (Forbidden) error.
The JSON body will contain a list of the currently linked application IDs.
This will update an application with ID 1234 to include links to applications 2345 and 2346. Note: application 1234 currently links to application 1235.
POST /v1/app/1234/links/apps
[ 2345, 2346 ]
HTTP 200 [ 1235, 2345, 2346 ]