Delete Application to Institution Linking Information

DELETE /app/:appID/links/institution/:institutionID



Enables the removal of a specific application to institution link. This will remove the applications ability to read data associated with the given institution.

Institution IDs can be collected via the GET /institutions REST end-point.

Resource URL

https://api.ideasystem.org/v1/app/appID/links/institution/institutionID

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 link where an application with ID 1234 can access data associated with an institution with ID 4321.

Request

DELETE /v1/app/1234/links/institution/4321

Response (as JSON)

HTTP 200
{
}