Delete Application to Application Linking Information

DELETE /app/:appID/links/apps



Enables the removal of all application to application links for the specified application. This will remove the applications ability to read data submitted/maintained by other applications.

Resource URL

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

Response

The response will be an HTTP 200 with an empty JSON body.

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.

Example

This request will remove the links for an application with ID 1234 so that it can no longer access other application's data.

Request

DELETE /v1/app/1234/links/apps

Response (as JSON)

HTTP 200
{
}