Skip to main content

Delete applications

You can delete applications from your organization using the nullplatform UI, CLI, or API.

info

You must have an Admin or Developer role to delete applications.

Using the UI

You can delete an application directly from the Namespace view.
Open the options menu (⋮) next to the application you want to remove and select Delete.

Deleting applications by changing their status

To delete an application using the CLI or API, patch the application’s status to deleting. Once the status is set, nullplatform handles the deletion process.

Below are example commands:

np application update \
--id :id \
--body '{
"status": "deleting"
}'