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"
}
Destroy the Neon project and metadata associated with app_name.
Only the owner of the application (identified via auth.user_id) may perform this destructive action.
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"
}
Name of the application to delete
Successful Response
The response is of type object
.
Was this page helpful?