DELETE
/
ee
/
apps
JavaScript
import Morphik from 'morphik';

const client = new Morphik({
  apiKey: 'My API Key',
});

const app = await client.ee.apps.delete({ app_name: 'app_name' });

console.log(app.app_name);
{
  "app_name": "<string>",
  "status": "deleted"
}

Headers

authorization
string

Query Parameters

app_name
string
required

Name of the application to delete

Response

200
application/json

Successful Response

The response is of type object.