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:
- CLI
- cURL
np application update \
--id :id \
--body '{
"status": "deleting"
}'
curl -L -X PATCH 'https://api.nullplatform.com/application/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <token>' \
-d '{
"status": "deleting",
}'