Delete Application Information

DELETE /app/:appID



Enables the removal of a specific application. This would done when that application is no longer used.

Resource URL

https://api.ideasystem.org/v1/app/1234

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 delete an application with ID 1234.

Request

DELETE /v1/app/1234

Response (as JSON)

HTTP 200
{
}