JavaScript
import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const response = await client.cloud.deleteApp({ app_name: 'app_name' });
console.log(response);curl https://api.morphik.ai/apps \
-X DELETE \
-H "Authorization: Bearer $MORPHIK_API_KEY"{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}API Reference
Delete Cloud App
Delete all resources associated with a given cloud application.
DELETE
/
apps
JavaScript
import Morphik from 'morphik';
const client = new Morphik({
apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted
});
const response = await client.cloud.deleteApp({ app_name: 'app_name' });
console.log(response);curl https://api.morphik.ai/apps \
-X DELETE \
-H "Authorization: Bearer $MORPHIK_API_KEY"{}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?

