Create Application to Application Links

POST /app/:appID/links/apps



Create application to application links. This will add the provided set of applications to the current set of linked applications.

Resource URL

https://api.ideasystem.org/v1/app/appID/links/apps

Data Parameters (JSON Body)

The JSON body will contain a list of application IDs that should be linked to the specified application.

Response

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.

Response Parameters (JSON Body)

The JSON body will contain a list of the currently linked application IDs.

Example

This will update an application with ID 1234 to include links to applications 2345 and 2346. Note: application 1234 currently links to application 1235.

Request

POST /v1/app/1234/links/apps

POST Data (as JSON)

[
    2345, 2346
]

Response (as JSON)

HTTP 200
[
    1235, 2345, 2346
]